Skip to content

Commit

Permalink
Change hint msg after module commands renaming (#2302)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwiatekus authored Dec 30, 2024
1 parent eacec6c commit 9d16ef4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/registry/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func GetExternalConfig(ctx context.Context, client kube.Client) (*ExternalRegist
return nil, clierror.Wrap(err,
clierror.New("failed to get external registry configuration",
"make sure cluster is available and properly configured",
"enable docker registry module by calling `kyma alpha module enable docker-registry -c experimental --default-cr`",
"enable docker registry module by calling `kyma alpha module add docker-registry -c experimental --default-cr`",
),
)
}
Expand All @@ -46,7 +46,7 @@ func GetInternalConfig(ctx context.Context, client kube.Client) (*InternalRegist
return nil, clierror.Wrap(err,
clierror.New("failed to load in-cluster registry configuration",
"make sure cluster is available and properly configured",
"enable docker registry module by calling `kyma alpha module enable docker-registry -c experimental --default-cr`",
"enable docker registry module by calling `kyma alpha module add docker-registry -c experimental --default-cr`",
),
)
}
Expand Down

0 comments on commit 9d16ef4

Please sign in to comment.