Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change hint msg after module commands renaming #2302

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading