Archive Topic Map
Workloads
Workload APIs are where intent becomes containers. Study the controllers, their guarantees, and the failure modes they hide until the pager rings.
Orientation
A curated shelf for study and for retrieval.
The controller is the unit of truth
Do not operate pods as individuals. Operate the controller: it owns the template, the rollout, the scaling posture, and the steady-state you will converge back to.
When a workload fails, you must identify whether the failure is template-level (config, image, probes, resources) or environment-level (capacity, policy, dependencies).
- Deployments roll forward and back; ReplicaSets are the historical record.
- DaemonSets enforce presence per node and amplify blast radius when misconfigured.
- StatefulSets carry identity and storage—treat them as operational contracts.
A rollout-first diagnostic sequence
If you can’t describe a rollout, you can’t safely change it.
kubectl
shell
kubectl rollout status deploy/<name> -n <ns>
kubectl describe deploy/<name> -n <ns>
kubectl get rs -n <ns> -o wide
kubectl describe pod <pod> -n <ns>Core workload doctrine
Controllers, drift, and the disciplined handling of change.
Text
Codex GigasControllers as Living Interpreters of Intent
Reconcile loops, idempotence, backoff, and status as testimony.
Text
Codex GigasThe Dark Arts of Rollout Safety
Progressive delivery posture, reversibility, and staged risk.
Atlas
TroubleshootDeployment Rollout Stalled
ProgressDeadlineExceeded, readiness gates, strategy headroom, and rollback posture.
Practice (labs)
Exercises that make workload discipline physical.
Lab
LabRollout Stalled (ProgressDeadlineExceeded)
Read conditions, prove the blocker, choose rollback vs fix-forward safely.
Lab
LabProbe Semantics Under Load
Readiness vs liveness vs startupProbe—tuned by observed latency.
Atlas
TroubleshootPods in CrashLoopBackOff
Classify the failure with evidence, then apply the smallest safe fix.
Related maps
Adjacent shelves for continued study.
Topic map
MapScheduling & Placement
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/workloads