-
Notifications
You must be signed in to change notification settings - Fork 92
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
Fix CI: Regenerate docs for authz subcommands #1231
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,6 @@ | ||
## kmeshctl authz | ||
|
||
Enable or disable xdp authz eBPF Prog for Kmesh's authz offloading | ||
|
||
``` | ||
kmeshctl authz [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
# Enable/Disable Kmesh's authz offloading in the specified kmesh daemon: | ||
kmeshctl authz <kmesh-daemon-pod> enable/disable | ||
|
||
# If you want to enable or disable authz offloading of all Kmeshs in the cluster | ||
kmeshctl authz enable/disable | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry, this document is autogenerated by the make gen tool based on CLI command comments. Therefore, your changes will not pass the checks in the GitHub Action. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I had run make gen command in my local these changes are made by that action. I thought that it would resolve ci issues... There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you mean you submitted this PR after running There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yaa kinda like that There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure I will update this pr, actually I missed this flow initially There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When will this PR be updated? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This PR issue is blocking the #1237 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
i am working on this |
||
``` | ||
Manage xdp authz eBPF program for Kmesh's authz offloading | ||
|
||
### Options | ||
|
||
|
@@ -25,4 +11,7 @@ kmeshctl authz [flags] | |
### SEE ALSO | ||
|
||
* [kmeshctl](kmeshctl.md) - Kmesh command line tools to operate and debug Kmesh | ||
* [kmeshctl authz disable](kmeshctl_authz_disable.md) - Disable xdp authz eBPF program for Kmesh's authz offloading | ||
* [kmeshctl authz enable](kmeshctl_authz_enable.md) - Enable xdp authz eBPF program for Kmesh's authz offloading | ||
* [kmeshctl authz status](kmeshctl_authz_status.md) - Display the current authorization status | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
## kmeshctl authz disable | ||
|
||
Disable xdp authz eBPF program for Kmesh's authz offloading | ||
|
||
``` | ||
kmeshctl authz disable [podNames...] [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
kmeshctl authz disable | ||
kmeshctl authz disable pod1 pod2 | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for disable | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [kmeshctl authz](kmeshctl_authz.md) - Manage xdp authz eBPF program for Kmesh's authz offloading | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
## kmeshctl authz enable | ||
|
||
Enable xdp authz eBPF program for Kmesh's authz offloading | ||
|
||
``` | ||
kmeshctl authz enable [podNames...] [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
kmeshctl authz enable | ||
kmeshctl authz enable pod1 pod2 | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for enable | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [kmeshctl authz](kmeshctl_authz.md) - Manage xdp authz eBPF program for Kmesh's authz offloading | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
## kmeshctl authz status | ||
|
||
Display the current authorization status | ||
|
||
``` | ||
kmeshctl authz status [podNames...] [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
kmeshctl authz status | ||
kmeshctl authz status pod1 pod2 | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for status | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [kmeshctl authz](kmeshctl_authz.md) - Manage xdp authz eBPF program for Kmesh's authz offloading | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why change
&
related format?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's autogenrated by make gen command