-
Notifications
You must be signed in to change notification settings - Fork 40.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
fix kubectl taint e2e flake: add retries for removing taint #33872
fix kubectl taint e2e flake: add retries for removing taint #33872
Conversation
/cc @davidopp |
Jenkins GKE smoke e2e failed for commit b8b92a1. Full PR test history. The magic incantation to run this job again is |
LGTM Thanks! |
@k8s-bot gke e2e test this |
Jenkins unit/integration failed for commit b8b92a1. Full PR test history. The magic incantation to run this job again is |
@k8s-bot unit test this |
Automatic merge from submit-queue |
Commit found in the "release-1.4" branch appears to be this PR. Removing the "cherrypick-candidate" label. If this is an error find help to get your PR picked. |
What this PR does / why we need it:
Why we need it: recent failures occurred in #29503 are caused by taints removing conflict on nodes, this PR is to fix it. (#33073 fixed taints updating conflict, but not taints removing.)
What this PR does: use
runKubectlRetryOrDie()
instead ofRunKubectlOrDie()
in all the places in "Kubectl taint" e2e tests.Which issue this PR fixes : fixes part of #29503, (would like to keep this issue open for some days more to make sure no other failures occur)
Special notes for your reviewer: NONE
Release note: NONE
This change is