Home > other >  How to install Kubernetes PKI certificates in AKS cluster
How to install Kubernetes PKI certificates in AKS cluster

Time:12-03

I have created an AKS cluster. Is Azure generating the following PKI certificate for us?

https://kubernetes.io/docs/setup/best-practices/certificates/#how-certificates-are-used-by-your-cluster.

CodePudding user response:

Yes, AKS manages all these certificates for you, with the exception of:

Client certificates for administrators of the cluster to authenticate to the API server

Because AKS hands out access tokens in the form of JWTs.

  • Related