Governance & Power
Admission Control and the Rite of Judgment
Admission is where governance becomes enforceable. It is also a place where outages are born.
Text
Authored as doctrine; evaluated as operations.
Doctrine
Admission is judgment. It is the institution that decides which objects may enter the archive and which must be denied.
Kubblai doctrine treats admission as sacred precisely because it is dangerous: it sits in the write path for everything.
Operational failure modes
If you run admission webhooks in production, you must assume they will fail. Design accordingly.
- Webhook timeouts block deploys and autoscaling writes.
- Network partitions create partial denial of service.
- Bad policy rollout bricks clusters (especially when failurePolicy=Fail).
- Mutating webhooks that rewrite intent create hard-to-debug drift.
Latency as a budget
Admission latency is additive. Multiple webhooks, each ‘only a little slow,’ produce a control-plane incident.
Instrument admission time per webhook. Treat p99 as a platform SLO.
Policy rollout discipline
Roll out policy like software: canaries, staged enforcement, and explicit escape hatches. Admission should not be a cliff.
Prefer validation that fails safe; reserve fail-closed only for policies where risk is higher than availability.
Concrete operator commands
When admission is suspected, your first job is to prove it with evidence.
kubectl
shell
kubectl get validatingwebhookconfigurations,mutatingwebhookconfigurations
kubectl get events -A --sort-by=.lastTimestamp | tail -n 60
kubectl -n kube-system get pods | rg -i 'webhook|gatekeeper|kyverno' || trueCanonical Link
Canonical URL: /library/admission-control-and-the-rite-of-judgment
Related Readings
Governance & Power
LibraryPolicy as Doctrine, Not Suggestion
Policy is what makes a platform institutional. Without it, every incident is negotiated from scratch.
Sacred Systems
LibraryThe API Server as the Gate of Truth
The API is the only public reality in Kubernetes. Everything else is implementation detail and transient effect.
Governance & Power
LibraryRBAC and the Governance of Power
RBAC is the cluster’s constitution. Poorly written, it becomes silent catastrophe during incident response.