4 — Deployments
Purpose
[stub: deployments]
Metadata
| Author | Amit Singh |
| Scope | kubernetes |
Local graph
Related notes
2 — Labels, Selectors & Annotations
Labels are indexed and queryable for selection and grouping; annotations hold non-identifying metadata the scheduler never selects on.
8 — Namespaces
Namespaces partition names and quota, not network or security — RBAC and NetworkPolicy have to be added explicitly, isolation is never implied by the namespace boundary alone.
1 — Pods
Why a Pod, not a container, is the atomic unit of scheduling — containers sharing a Pod share network namespace and IPC but never share a lifecycle.
3 — ReplicaSets
A ReplicaSet only guarantees replica count and pod-template match — it has no concept of rollout history, which is why Deployments layer on top of it.