Replies: 1 comment 4 replies
-
Worker nodes can't control special node labels, so you need to remove a node label yourself manually using |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello there,
I have a cluster of three nodes, all are type
controlplane
and all haveallowSchedulingOnControlPlanes
set totrue
. This ended up causing some of the expected problems, like pods fighting for resources with the control plane infra, so I want to split the cluster into worker node sand controlplane nodes. The main problem is that the nodes are all part of a Rook cluster and spread data across them.My plan looked like this:
apply-config
-ing a worker config onto the nodeThe Problem: I
apply-config
'd the worker config to an existing controlplane node, and after reboot, it still appears to be a controlplane node. It hasnode-role.kubernetes.io/control-plane: ""
and—oh wait actually nevermind, it looks likekube-apiserver
isn't running on the node, so I think it might have worked! I guess my new question is: how do I change the role fromcontrol-plane
toworker
, it doesn't appear to be as simple as changing themetadata.annotations
.Beta Was this translation helpful? Give feedback.
All reactions