-
Notifications
You must be signed in to change notification settings - Fork 40k
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
Ensure kubernetes master is properly tainted in GCE. #78183
Conversation
/assign @mtaufen |
/assign @cjcullen |
Factored in mtaufens suggestion.
@@ -746,6 +746,7 @@ function construct-linux-kubelet-flags { | |||
#TODO(mikedanese): allow static pods to start before creating a client | |||
#flags+=" --bootstrap-kubeconfig=/var/lib/kubelet/bootstrap-kubeconfig" | |||
#flags+=" --kubeconfig=/var/lib/kubelet/kubeconfig" | |||
flags+=" --register-with-taints=node-role.kubernetes.io/master=:NoSchedule" |
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 think it should just be flags+=" --register-with-taints=node-role.kubernetes.io/master:NoSchedule"
(omit the final equals sign, just :
instead of =:
).
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.
Oh nevermind, you have an empty value. That's confusing lol.
/lgtm |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: cheftako, cjcullen The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
What type of PR is this?
/kind bug
What this PR does / why we need it:
Ensures that the node-role.kubernetes.io/master taint is applied to the master with NoSchedule.
Which issue(s) this PR fixes:
Fixes #78147
Special notes for your reviewer:
Does this PR introduce a user-facing change?: