KCNA Kubernetes Fundamentals Practice Question
Which component is responsible for ensuring that containers are running as specified in a Pod's specification on a node?
⚠ Common exam trap
A common pitfall is confusing the kubelet, which ensures containers are running according to the Pod spec, with the container runtime, which actually executes containers. Candidates often choose 'container runtime' because they associate 'running containers' with the container runtime, but the kubelet is the agent that manages Pod lifecycle on the node.
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
✓
kubelet
The kubelet is the primary node agent that runs on each node in a Kubernetes cluster. It is responsible for ensuring that containers described in Pod specifications (PodSpecs) are running and healthy. The kubelet watches for Pod assignments from the API server, creates or terminates containers via the container runtime, and continuously reports the node and Pod status back to the control plane.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Container runtime
Why it's wrong here
The container runtime (e.g., containerd) actually runs the containers, but the kubelet manages the lifecycle and ensures the spec is met.
- ✓
kubelet
Why this is correct
The kubelet ensures that containers in a Pod are running according to the PodSpec.
- ✗
kube-proxy
Why it's wrong here
kube-proxy handles network policies and service load balancing on nodes.
- ✗
kube-scheduler
Why it's wrong here
The scheduler assigns Pods to nodes, but does not run on nodes.
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
1 more way 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 component is responsible for ensuring that the containers in a pod are running as specified?
medium- A.kube-apiserver
- B.kube-controller-manager
- ✓ C.kubelet
- D.kube-proxy
Why C: The kubelet is the primary node agent that runs on each worker node. It receives PodSpec definitions from the API server (directly or via the kube-controller-manager) and ensures that the containers described in those PodSpecs are actually running and healthy. It does this by interacting with the container runtime (e.g., containerd or CRI-O) to start, stop, and restart containers as needed, continuously reconciling the actual state with the 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.