Ein Pod ist die kleinste deploybare Einheit in Kubernetes: eine Hülle um einen oder mehrere Container, die denselben network namespace (eine IP) teilen und Storage-Volumes gemeinsam nutzen können. Du deployst nicht Container direkt — du deployst Pods.
Was steckt in einem Pod
┌───────────────── Pod (has ONE shared IP) ─────────────────┐
│ │
│ ┌──────────────┐ ┌──────────────┐ shared: │
│ │ container A │ │ container B │ • network (IP) │
│ │ (app) │ │ (sidecar) │ • localhost │
│ └──────────────┘ └──────────────┘ • volumes │
│ │ talk to each other via localhost:port │
└────────────────────────────────────────────────────────────┘
