KCNA Kubernetes Fundamentals Practice Question
Which Kubernetes control plane component is responsible for maintaining the desired state of the cluster by running controller loops?
⚠ Common exam trap
CNCF often tests the misconception that the kube-apiserver handles all cluster logic, but the trap here is that the kube-apiserver only exposes the API and validates requests, while the actual reconciliation loops that enforce desired state are run exclusively by 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 control plane component that runs controller loops, which are continuous processes that watch the shared state of the cluster through the kube-apiserver and make changes to drive the current state toward the desired state. Each controller (e.g., ReplicaSet, Node, Deployment) is a separate loop that handles a specific aspect of cluster management, ensuring that the actual cluster state matches the desired configuration defined in the API objects.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
etcd
Why it's wrong here
etcd is a distributed key-value store that holds the cluster’s configuration and state data, but it does not execute controller loops to reconcile the desired state; that responsibility belongs to the kube-controller-manager. It is tempting because etcd stores the desired state definitions (e.g., replica counts in Deployment objects), so one might assume it actively maintains that state. In a scenario asking which component persistently records cluster data for recovery or audit, etcd would be the correct choice.
- ✗
kube-apiserver
Why it's wrong here
The API server serves the Kubernetes API, but does not run reconciliation loops.
- ✓
kube-controller-manager
Why this is correct
The kube-controller-manager runs controller loops that reconcile the current state with the desired state.
- ✗
kube-scheduler
Why it's wrong here
The scheduler assigns pods to nodes, but does not run general reconciliation loops.
Go deeper
Related to this question
About these practice questions
Courseiva writes every KCNA question from scratch — 833 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →
Same concept, more angles
3 more ways this is tested on KCNA
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. Which Kubernetes control plane component is responsible for maintaining the desired state of the cluster, such as ensuring the correct number of pods are running?
easy- ✓ A.kube-controller-manager
- B.kube-apiserver
- C.kube-scheduler
- D.etcd
Why A: The kube-controller-manager is the control plane component that runs controller processes, including the Replication Controller, which is responsible for ensuring that the desired number of pod replicas are running at all times. It continuously watches the state of the cluster via the kube-apiserver and makes adjustments to reconcile the current state with the desired state defined in the cluster's configuration.
Variation 2. Which Kubernetes control plane component is responsible for maintaining the desired state of the cluster by running reconciliation loops?
easy- A.kube-scheduler
- B.etcd
- C.kube-apiserver
- ✓ D.kube-controller-manager
Why D: The kube-controller-manager is the control plane component that runs controller processes, each of which watches the current state of the cluster via the kube-apiserver and makes changes to drive the actual state toward the desired state defined in etcd. This reconciliation loop pattern is fundamental to Kubernetes' self-healing behavior, ensuring that resources like deployments, replica sets, and nodes match their specifications.
Variation 3. Which Kubernetes control plane component is responsible for maintaining the desired state of the cluster by running controllers?
easy- A.kube-scheduler
- B.etcd
- ✓ C.kube-controller-manager
- D.kube-apiserver
Why C: The kube-controller-manager is the control plane 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 bring the current state closer to the desired state. It bundles together multiple controllers (e.g., Node Controller, Replication Controller, Endpoint Controller, Service Account Controller) that each handle a specific aspect of cluster management, ensuring the cluster's actual state matches the user-defined desired state.
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.