A Pod is the smallest deployable unit in Kubernetes: a wrapper around one or more containers that share the same network namespace (one IP) and can share storage volumes. You don't deploy containers directly — you deploy Pods.
What is inside a Pod
┌───────────────── Pod (has ONE shared IP) ─────────────────┐
│ │
│ ┌──────────────┐ ┌──────────────┐ shared: │
│ │ container A │ │ container B │ • network (IP) │
│ │ (app) │ │ (sidecar) │ • localhost │
│ └──────────────┘ └──────────────┘ • volumes │
│ │ talk to each other via localhost:port │
└────────────────────────────────────────────────────────────┘
