-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1241 from LiZhenCheng9527/make-gen
Modify the kmeshctl documentation according to make gen
- Loading branch information
Showing
5 changed files
with
80 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|