Pod हे Kubernetes मधील सर्वांत लहान deployable एकक आहे: एक किंवा अधिक containers भोवतीचे एक आवरण जे एकच network namespace (एक IP) सामायिक करतात आणि storage volumes सामायिक करू शकतात. तुम्ही containers थेट deploy करत नाही — तुम्ही Pods deploy करता.
Pod च्या आत काय असते
┌───────────────── Pod (has ONE shared IP) ─────────────────┐
│ │
│ ┌──────────────┐ ┌──────────────┐ shared: │
│ │ container A │ │ container B │ • network (IP) │
│ │ (app) │ │ (sidecar) │ • localhost │
│ └──────────────┘ └──────────────┘ • volumes │
│ │ talk to each other via localhost:port │
└────────────────────────────────────────────────────────────┘
