Kubernetes and Cloud Native Associate (KCNA) — Question 77
What is the resource type used to package sets of containers for scheduling in a cluster?
Answer options
- A. Pod
- B. ContainerSet
- C. ReplicaSet
- D. Deployment
Correct answer: A
Explanation
The correct answer is A, Pod, as it is the fundamental unit in Kubernetes used to encapsulate one or more containers. ContainerSet is not a recognized Kubernetes resource, ReplicaSet is used for maintaining a stable set of replica pods, and Deployment is a higher-level abstraction that manages ReplicaSets.