KCNA Kubernetes Fundamentals Practice Question
Which Kubernetes control plane component is responsible for maintaining the desired state of the cluster by running reconciliation loops?
⚠ Common exam trap
CNCF often tests the misconception that etcd is responsible for maintaining desired state because it stores the desired state, but the trap is that etcd is only a data store and does not execute reconciliation loops—that is the job of 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 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.
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-scheduler
Why it's wrong here
The scheduler assigns pods to nodes but does not perform general reconciliation.
- ✗
etcd
Why it's wrong here
etcd is a key-value store used as Kubernetes' backing store for all cluster data, not for reconciliation.
- ✗
kube-apiserver
Why it's wrong here
The API server is the front end for the Kubernetes control plane and handles REST requests, but does not run reconciliation loops.
- ✓
kube-controller-manager
Why this is correct
The controller manager runs controllers that implement reconciliation loops to ensure the actual state matches the desired state.
Go deeper
Related to this question
About these practice questions
One of 833 original KCNA practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. 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.