Kubernetes v1.36 introduces an alpha feature for manifest-based admission control that allows admission policies to load from disk at startup, preventing deletion during critical phases. This update addresses the limitations of existing admission control practices, particularly during cluster bootstrap and recovery scenarios.
Kubernetes v1.36 has introduced an alpha feature called manifest-based admission control. This feature enables the definition of admission webhooks and CEL-based policies as files stored on disk, which can be loaded by the API server before it serves any requests.
Existing Kubernetes enforcement mechanisms allow policies to be created as API objects. This poses challenges particularly during cluster bootstrap as policies may not be active immediately. The new feature aims to eliminate that window where policies can be vulnerable to deletion by privileged users.
To utilize this feature, users must add a `staticManifestsDir` field to the AdmissionConfiguration file. This points to a directory containing policy YAML files that get loaded before the API server begins processing requests. Each object must end with the suffix .static.k8s.io to be recognized.
This change significantly enhances the security and reliability of Kubernetes admission policies, particularly during recovery from failures or initial cluster setups. It ensures that critical policies are always in effect, thereby strengthening the overall security posture of Kubernetes environments.
✨ This summary was generated by AI from the outlets' reporting listed below. It is not independently verified and may contain errors — check the original sources. How BrevFeed works →
One email each morning: the day's tech stories, clustered across outlets and summarized. No account needed.
One email a day. Unsubscribe in one click, any time.
Spend a few minutes, get the whole day. Every topic's top stories in one hands-free rundown — listen, watch, or read the transcript.
▶ Play today's briefNew every morning, and the back catalogue is archived by date.
Kubernetes v1.36 introduces an alpha feature for manifest-based admission control that allows admission policies to load from disk at startup, preventing deletion during critical phases. This update addresses the limitations of existing admission control practices, particularly during cluster bootstrap and recovery scenarios.