Skip to content

Latest commit

 

History

History
executable file
·
21 lines (13 loc) · 493 Bytes

015-Certificate-Authority.md

File metadata and controls

executable file
·
21 lines (13 loc) · 493 Bytes

Certificate Authority

By default, kubeadm creates a self-signed certificate authority (CA)

  • CA can also be created to be a part of an external PKI
  • used to secure cluster communications
  • generates certificates used by API server to encrypt HTTPS
  • generates certificates for authenticating users and kubelets
  • certificates will be distributed to each node

The CA files will be stored in:

$ /etc/kubernetes/pki  

Back to first page