A Pod is the smallest execution unit in Kubernetes
- Pods are ephemeral by nature
- If a pod (or the node it executes on) fails, Kubernetes can automatically create a new replica of that pod to continue operations.
Because we're not supposed to pack multiple processes into a single container, we need a higher-level structure that will allow us to tie and wrap containers together and manage them as a single unit. This is the reasoning behind the pods. Simply put, a Kubernetes pod is a collection of containers.
- In case of a Node failure, identical Pods are scheduled on other available Nodes in the cluster.

Comments
Post a Comment