Pods in Kubernetes

A pod is the smallest working unit in Kubernetes.
A pod will have one or more containers (when there are multiple containers, they share the resources on the pods)

Kubernetes runs the containers through pods only.
When scaling is required, the pod is replicated.
Pods are ephemeral and disposable – they cannot be reinstantiated after the lifecycle, a similar pod can be instantiated.