8 — Namespaces
Purpose
[stub: namespaces]
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.
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.
9 — Resource Management (Requests, Limits, QoS)
The scheduler only reads requests, never limits — the requests-to-limits ratio instead decides the pod's QoS class, which is what actually governs eviction order under node pressure.