-
Notifications
You must be signed in to change notification settings - Fork 3.4k
operator: skip node taint retry when node not found #39517
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
Conversation
/test |
Tested this at scale, and it seems to clear out the log issue. Chose to skip retry since this seems to align with the original behavior of this code: cilium/operator/watchers/node_taint.go Lines 91 to 94 in 0e4bc5e
cilium/operator/watchers/node_taint.go Lines 74 to 78 in 0e4bc5e
|
The Cilium Operator logs are filled with attempts to retry updating taints/conditions on nodes even if we can't get the node from the local store due to node deletion. Skip retry in this case. Signed-off-by: jshr-w <shjayaraman@microsoft.com>
/test |
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!
The Cilium Operator logs are filled with attempts to retry updating taints/conditions on nodes even if we can't get the node from the local store due to node deletion. Skip retry in this case.
Fixes: #38059