-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Make k8s-cilium-exec.sh friendlier to read #17997
Make k8s-cilium-exec.sh friendlier to read #17997
Conversation
Commit a8ac3a4a87059f8192f04ed9be80c64a81271b78 does not contain "Signed-off-by". Please follow instructions provided in https://docs.cilium.io/en/stable/contributing/development/contributing_guide/#developer-s-certificate-of-origin |
Signed-off-by: weizhou Lan weizhou.lan@daocloud.io |
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.
Thanks, this is easier to read.
Please fix up the author and signoff using the following commands, and then force push to update the PR:
git config --global user.name "weizhou Lan"
git commit --amend --reset-author --signoff
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.
Nice improvement! Approved, pending comment from Joe.
@weizhoublue Thanks for your contribution! As noted above by Joe, we require the commit description to include sign-offs. Can you please amend your commit so that we can merge your PR? EDIT: Ah sorry I misread the timestamps, I thought the request from Joe was dating back way earlier than just yesterday and wanted to check in, see if I could help. Sorry for the mixup, it is probable you haven't even had the time to catch up with the latest comments 😅 |
Signed-off-by: weizhou Lan <weizhou.lan@daocloud.io>
a8ac3a4
to
e4a1e8e
Compare
@joestringer @nbusseneau |
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.
Thanks for the PR!
the debug script k8s-cilium-exec.sh is used to execute command on all cilium-agent pods
but its output is not friendly to figure out which node each output section belongs to
for example , below output is for 2-nodes cluster , if an issue is happening , we could not tell which node the issue is happening on
I add the the pod and node information for each output section , so it is easy to find where an error is happening
Signed-off-by: weizhou Lan weizhou.lan@daocloud.io