Kubernetes Authentication — Kubeconfig
medium.com·16h
Flag this post

Featured

8 min read14 hours ago

As mentioned in the previous post, executing kubectl apply -f manifest.yaml is a process involving authentication, authorization, and admission. Continuing the series of articles that will culminate in the resource persistence in etcd, in this chapter we will discuss the Kubernetes authentication process — the first step in the security chain.

Authentication is responsible for answering the question: “Who is making this request?”

Only after this step does Kubernetes proceed to check what this entity can do (authorization) and whether the request is valid (admission).

Understanding the Request

Let’s continue with the same ex…

Similar Posts

Loading similar posts...