-
Notifications
You must be signed in to change notification settings - Fork 91
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?
Conversation
Signed-off-by: Ravjot Singh <ravu2004@gmail.com>
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
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 comment
The 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 comment
The 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 comment
The reason will be displayed to describe this comment to others. Learn more.
Do you mean you submitted this PR after running make gen
commands?
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.
Yaa kinda like that
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.
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.
make gen-check
only is a tool.
You can revert your changes, then run make gen. After that, submit your changes again.
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.
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 comment
The 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 comment
The 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 comment
The reason will be displayed to describe this comment to others. Learn more.
When will this PR be updated?
i am working on this
@@ -244,7 +244,7 @@ static inline int convert_v6(char *data, __u32 *ip6) | |||
__u16 ip_1 = (ip >> 0) & 0xFFFF; | |||
__u16 ip_2 = (ip >> 16) & 0xFFFF; | |||
for (int j = 0; j < 2; j++) { | |||
__u16 ip_1 = (ip)&0xFFFF; | |||
__u16 ip_1 = (ip) & 0xFFFF; |
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
gen check failed |
Hey, can u guide me in right direction why these checks are failing |
related to, the CI use clang format. I think you can revert these white spaces added around
|
ok @hzxuzhonghu i will try this once |
please update |
This has been modified #1241 |
Fix ci issues in #1217