Pod (EN)
ConceptThe smallest deployable unit in Kubernetes that contains one or more containers
Architecture
flowchart TD A[Kubernetes Master] --> B[Node 1] A --> C[Node 2] A --> D[Node 3] B --> E[Pod 1] B --> F[Pod 2] C --> G[Pod 3] D --> H[Pod 4] E --> I[Container A] E --> J[Container B] F --> K[Container C] G --> L[Container D] H --> M[Container E]
In Context
- Typically used together with Deployments, Services, and ReplicaSets
- Related to: Kubernetes, Container, Node, Namespace
- Example use case: Microservices architecture, where multiple containers run in a Pod to form a single application