- Home
- All questions
- Question 523
CKA study material · question 523 of 1000
How are Kubernetes' built-in controllers deployed in a standard cluster?
Show the answer
Answer: C. Inside a single kube-controller-manager binary
The built-in controllers all run inside kube-controller-manager as one process, which is why leader election is done once for the whole set rather than per controller.
Source: Controllers (Kubernetes) — Ways of running controllers