Kubernetes and Cloud Native Associate (KCNA) — Question 28
Which kubernetes component is the smallest deployable unit of computing?
Answer options
- A. StatefulSet
- B. Deployment
- C. Pod
- D. Container
Correct answer: C
Explanation
The correct answer is C, Pod, as it is the smallest deployable unit in Kubernetes that can contain one or more containers. StatefulSet and Deployment are higher-level abstractions that manage groups of Pods, while a Container is an isolated environment within a Pod.