Platform & DevOps·The orchestrator's model of the world
two containers share an IP address and a lifetime, and are scheduled onto the same node together or not at all.
Pod
Also calledworkload unit, task group
The smallest schedulable unit: one or more containers sharing a network namespace, storage volumes and a fate. The reason it exists rather than scheduling containers directly is that some helper processes must be co-located with the application — a proxy, a log shipper — and giving them a shared address and lifetime makes that a first-class idea. It is also disposable by design: a pod is never repaired, only replaced.