Exam KCNA All QuestionsBrowse all questions from this exam
Question 64

Which kubernetes component is the smallest deployable unit of computing?

    Correct Answer: C

    In Kubernetes, the smallest deployable unit of computing is a Pod. A Pod represents a single instance of a running process in your cluster and can contain one or more containers. It is the basic building block of Kubernetes applications and is the smallest unit that can be created, managed, and deployed.

Discussion
ankreOption: C

C is correct, container is not deployable

pulsefireOption: C

c is right

majkisermi98Option: C

That's a basic knowledge

3c9bc24Option: C

agree, C is correct

AbhishekJoshiOption: C

Container is not a object in k8s, pod is the only smallest unit in k8s

andytsangchunOption: C

For sure its C

EzBLOption: C

Explanation: • In Kubernetes, the smallest deployable unit of computing is a Pod. • A Pod represents a single instance of a running process in your cluster. • It can contain one or more containers that are tightly coupled and share the same network namespace, IPC namespace, and other resources. • Pods are the basic building blocks of Kubernetes applications and are scheduled onto nodes in the cluster.

SeaH0rse66Option: C

A Pod is the smallest deployable unit of computing in Kubernetes. It represents a single instance of a running process in your cluster. Pods can contain one or more containers that are tightly coupled and share resources, such as network and storage, and are scheduled onto nodes in the Kubernetes cluster., this is in a way a "unit of measure" , like the atom of Kubernetes, the container would be like a proton...

hovnivalOption: C

C is correct, confirmed by Copilot.