Archive Topic Map
Foundations
The objects are simple. The discipline is not. Build correct mental models: desired state, control loops, and the testimony of the API.
Orientation
A curated shelf for study and for retrieval.
Why foundations matter
Kubernetes punishes vague mental models. Most operational damage comes from acting on assumptions that do not match the control plane’s real semantics.
This shelf is written to stabilize your internal map: what is authoritative, what is eventual, what is constrained, and what you can trust under pressure.
- Desired state is written into etcd; reality is observed through kubelet and controllers.
- Reconciliation closes the gap—until backpressure, admission, or latency distort the loop.
- Labels and selectors are not decoration; they are routing and ownership.
A minimal inspection ritual
Before you change anything, prove what the cluster believes and what the node is doing.
kubectl
shell
kubectl get ns
kubectl get nodes -o wide
kubectl get deploy,rs,pods -A -o wide
kubectl get events -A --sort-by=.lastTimestamp | tail -n 40Common mistakes the Order sees
These failures present as “mystery outages”. They are usually foundations.
- Treating status as truth without reading conditions and events.
- Changing labels casually and severing Services or controller ownership.
- Confusing readiness (traffic gate) with liveness (kill switch).
- Assuming a YAML apply is instantaneous and consistent across controllers.
Start here (recommended)
A short reading path that stabilizes vocabulary and mechanics.
Tutorial
FoundationsKubernetes Primer
Clusters, nodes, pods, deployments, services, ingress—operator-first.
Text
Codex GigasDesired State and the Theology of Convergence
Why declarative intent works, and where it breaks under pressure.
Text
Codex GigasThe Doctrine of Reconciliation
Controllers, drift correction, and the ethics of idempotent change.
Reference
TermsLexicon
Concise terms with operational meaning and related reading.
Strengthen the control plane model
If you can’t explain truth, you can’t govern change.
Text
FeaturedWhat the Order Teaches About Kubernetes Control Planes
API semantics, admission, etcd realities, and control-plane discipline.
Text
Codex GigasThe Control Loop as Sacred Law
Watch → compare → act → record—plus the failure modes of each step.
Text
Codex GigasThe API Server as the Gate of Truth
Latency, admission, authorization, and the write-path contract.
Related maps
Adjacent shelves for continued study.
Topic map
MapWorkloads
Continue with the adjacent shelf.
Topic map
MapOperations
Continue with the adjacent shelf.
Topic map
MapTroubleshooting
Continue with the adjacent shelf.
Canonical link
Canonical URL: /library/topics/foundations