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

feat(kafka acl): add convenience commands #1179

Merged
merged 12 commits into from
Oct 12, 2021
17 changes: 15 additions & 2 deletions docs/commands/rhoas_kafka_acl.adoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

72 changes: 72 additions & 0 deletions docs/commands/rhoas_kafka_acl_grant-permissions.adoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/commands/rhoas_kafka_acl_list.adoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions pkg/cmd/kafka/acl/acl.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package acl

import (
"github.com/redhat-developer/app-services-cli/pkg/cmd/factory"
"github.com/redhat-developer/app-services-cli/pkg/cmd/kafka/acl/grant"
"github.com/redhat-developer/app-services-cli/pkg/cmd/kafka/acl/list"
"github.com/spf13/cobra"
)
Expand All @@ -18,6 +19,7 @@ func NewAclCommand(f *factory.Factory) *cobra.Command {

cmd.AddCommand(
list.NewListACLCommand(f),
grant.NewGrantPermissionsACLCommand(f),
)

return cmd
Expand Down
Loading