2 — Labels, Selectors & Annotations
Purpose
[stub: labels-selectors-and-annotations]
Metadata
| Author | Amit Singh |
| Scope | kubernetes |
Local graph
Related notes
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.
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.