Which kubernetes component is the smallest deployable unit of computing?
Which kubernetes component is the smallest deployable unit of computing?
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.
C is correct, container is not deployable
c is right
That's a basic knowledge
agree, C is correct
Container is not a object in k8s, pod is the only smallest unit in k8s
For sure its 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.
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...
C is correct, confirmed by Copilot.