Linux_FoundationLinux_Foundation
KCNA · Question #214
KCNA Question #214: Real Exam Question with Answer & Explanation
The correct answer is C: Pod. The smallest deployable unit of computing within Kubernetes is a Pod, which can encapsulate one or more containers.
Submitted by the_admin· May 4, 2026Kubernetes Fundamentals
Question
Which kubernetes component is the smallest deployable unit of computing?
Options
- AStatefulSet
- BDeployment
- CPod
- DContainer
Explanation
The smallest deployable unit of computing within Kubernetes is a Pod, which can encapsulate one or more containers.
Common mistakes.
- A. A StatefulSet is a controller used to manage a set of Pods that require stable, unique network identifiers and persistent storage, not the smallest deployable unit itself.
- B. A Deployment is a higher-level controller that manages the desired state of ReplicaSets and Pods, facilitating declarative updates to applications, but it is not the smallest deployable unit.
- D. A Container is an isolated process environment that runs an application, but Kubernetes orchestrates and deploys containers primarily within the context of a Pod, not as standalone units.
Concept tested. Kubernetes Pods as smallest deployable units
Reference. https://kubernetes.io/docs/concepts/workloads/pods/
Topics
#Kubernetes Pods#Core Concepts#Smallest Deployable Unit
Community Discussion
No community discussion yet for this question.