- Home
- All questions
- Question 552
CKA study material · question 552 of 1000
On a single-machine kubeadm cluster, ordinary workloads stay Pending. Which action lets them run?
Show the answer
Answer: C. Remove the node-role.kubernetes.io/control-plane:NoSchedule taint
kubeadm taints control plane nodes with node-role.kubernetes.io/control-plane:NoSchedule so workloads stay off them; removing that taint is what makes a single-node cluster usable.
Source: Creating a cluster with kubeadm (Kubernetes) — Control plane node isolation