Introduction to Admission Control
Explore the fundamentals of Kubernetes admission control, including how admission plugins and webhooks validate and mutate requests. Understand their role in enhancing security, governance, and default resource management within the cluster.
Authentication and authorization
All the requests that are being sent to the kube-apiserver need to pass through the authentication, authorization, and admission control stages, and then come to the final resource validation and persistent storage stages.
It’s quite straightforward that all the requests need to get authenticated and authorized, because we need to know exactly ...
...