KCNA Kubernetes Fundamentals Practice Question
Which Kubernetes component is responsible for maintaining the desired state of the cluster by running controllers?
⚠ Common exam trap
CNCF often tests the misconception that the kube-apiserver is responsible for maintaining desired state because it is the central API gateway, but the actual enforcement is done by controllers within the kube-controller-manager.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
kube-controller-manager
The kube-controller-manager is the component that runs controller processes, which are control loops that watch the shared state of the cluster through the kube-apiserver and make changes to drive the current state toward the desired state. It bundles together controllers such as the Node Controller, Replication Controller, and Endpoint Controller, each responsible for specific aspects of cluster state management.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
kube-apiserver
Why it's wrong here
The API server is the front-end for the Kubernetes control plane but does not run controllers.
- ✗
kube-scheduler
Why it's wrong here
The scheduler is responsible for assigning pods to nodes, not for maintaining desired state.
- ✓
kube-controller-manager
Why this is correct
Correct. It runs controller processes like node controller, replication controller, etc.
- ✗
etcd
Why it's wrong here
etcd is a key-value store for cluster data, not a controller component.
Go deeper
Related to this question
About these practice questions
This KCNA question is part of Courseiva's 833-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This KCNA practice question is part of Courseiva's free CNCF certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the KCNA exam.