KCNA Exam QuestionsBrowse all questions from this exam

KCNA Exam - Question 64


Which kubernetes component is the smallest deployable unit of computing?

Show Answer
Correct Answer: C,D

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

9 comments
Sign in to comment
ankreOption: C
Dec 7, 2023

C is correct, container is not deployable

AbhishekJoshiOption: C
Dec 17, 2023

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

3c9bc24Option: C
Dec 28, 2023

agree, C is correct

majkisermi98Option: C
Jan 17, 2024

That's a basic knowledge

pulsefireOption: C
Mar 5, 2024

c is right

EzBLOption: C
Mar 19, 2024

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.

andytsangchunOption: C
Apr 29, 2024

For sure its C

hovnivalOption: C
Apr 25, 2024

C is correct, confirmed by Copilot.

SeaH0rse66Option: C
May 17, 2024

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...