1 — Pods
Purpose
[stub: pods]
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.
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.