- Home
- All questions
- Question 507
CKA study material · question 507 of 1000
A kubelet is configured with both --register-node=false and --register-with-taints=workload=gpu:NoSchedule. What happens to the taint?
Show the answer
Answer: C. Nothing — the flag has no effect when self-registration is off
--register-with-taints applies taints at registration time only, so it is a no-op when --register-node is false. The taint would have to be added with kubectl taint instead.
Source: Nodes (Kubernetes) — Management › Self-registration of Nodes