diff --git a/docs/commands/rhoas_cluster_connect.adoc b/docs/commands/rhoas_cluster_connect.adoc index ea7858a3a..0cf588b76 100644 --- a/docs/commands/rhoas_cluster_connect.adoc +++ b/docs/commands/rhoas_cluster_connect.adoc @@ -25,7 +25,7 @@ the Service Binding operator (https://github.com/redhat-developer/service-bindin NOTE: Created service account will need to be given permissions to specified service For example for Kafka service you should execute the following command to grant access to the service account - $ rhoas kafka acl grant-access --producer --consumer --service-account your-sa --topic "*" --group "*" + $ rhoas kafka acl grant-access --producer --consumer --service-account your-sa --topic all --group all diff --git a/pkg/cmd/serviceaccount/create/create.go b/pkg/cmd/serviceaccount/create/create.go index 7df3f3081..658c6fead 100644 --- a/pkg/cmd/serviceaccount/create/create.go +++ b/pkg/cmd/serviceaccount/create/create.go @@ -166,9 +166,9 @@ func runCreate(opts *options) error { } opts.Logger.Info(icon.SuccessPrefix(), opts.localizer.MustLocalize("serviceAccount.common.log.info.credentialsSaved", - localize.NewEntry("FilePath", color.CodeSnippet(opts.filename))), + localize.NewEntry("FilePath", color.CodeSnippet(opts.filename)), localize.NewEntry("ClientID", color.Success(creds.ClientID)), - ) + )) return nil }