Manual Rotation of CA Certificates

    You need to have a Kubernetes cluster, and the kubectl command-line tool must be configured to communicate with your cluster. It is recommended to run this tutorial on a cluster with at least two nodes that are not acting as control plane hosts. If you do not already have a cluster, you can create one by using minikube or you can use one of these Kubernetes playgrounds:

    Your Kubernetes server must be at or later than version v1.13. To check the version, enter .

    • For more information about authentication in Kubernetes, see .
    • For more information about best practices for CA certificates, see Single root CA.

    Rotate the CA certificates manually

    Caution:

    Make sure to back up your certificate directory along with configuration files and any other necessary files.

    This approach assumes operation of the Kubernetes control plane in a HA configuration with multiple API servers. Graceful termination of the API server is also assumed so clients can cleanly disconnect from one API server and reconnect to another.

    Configurations with a single API server will experience unavailability while the API server is being restarted.

    1. Distribute the new CA certificates and private keys (ex: ca.crt, ca.key, front-proxy-ca.crt, and front-proxy-ca.key) to all your control plane nodes in the Kubernetes certificates directory.

    2. Update kube-controller-manager‘s --root-ca-file to include both old and new CA. Then restart the component.

      Any service account created after this point will get secrets that include both old and new CAs.

      Note: The files specified by the kube-controller-manager flags --client-ca-file and --cluster-signing-cert-file cannot be CA bundles. If these flags and --root-ca-file point to the same ca.crt file which is now a bundle (includes both old and new CA) you will face an error. To workaround this problem you can copy the new CA to a separate file and make the flags --client-ca-file and --cluster-signing-cert-file point to the copy. Once is no longer a bundle you can restore the problem flags to point to ca.crt and delete the copy.

    3. Update all service account tokens to include both old and new CA certificates.

      If any pods are started before new CA is used by API servers, they will get this update and trust both old and new CAs.

    4. Append the both old and new CA to the file against --client-ca-file and --kubelet-certificate-authority flag in the kube-apiserver configuration.

    5. Append the both old and new CA to the file against --client-ca-file flag in the kube-scheduler configuration.

    6. Update certificates for user accounts by replacing the content of client-certificate-data and client-key-data respectively.

      For information about creating certificates for individual user accounts, see .

      Additionally, update the certificate-authority-data section in the kubeconfig files, respectively with Base64-encoded old and new certificate authority data

    7. Follow below steps in a rolling fashion.

      1. Restart any other aggregated api servers or webhook handlers to trust the new CA certificates.

      2. Restart the kubelet by update the file against clientCAFile in kubelet configuration and certificate-authority-data in kubelet.conf to use both the old and new CA on all nodes.

        If your kubelet is not using client certificate rotation update and client-key-data in kubelet.conf on all nodes along with the kubelet client certificate file usually found in /var/lib/kubelet/pki.

      3. Restart API servers with the certificates (apiserver.crt, apiserver-kubelet-client.crt and front-proxy-client.crt) signed by new CA. You can use the existing private keys or new private keys. If you changed the private keys then update these in the Kubernetes certificates directory as well.

        Since the pod trusts both old and new CAs, there will be a momentarily disconnection after which the pod’s kube client will reconnect to the new API server that uses the certificate signed by the new CA.

        • Restart Scheduler to use the new CAs.

        Note: To generate certificates and private keys for your cluster using the openssl command line tool, see . You can also use cfssl.

      4. Annotate any Daemonsets and Deployments to trigger pod replacement in a safer rolling fashion.

        Example:

        Note: To limit the number of concurrent disruptions that your application experiences, see .

    8. If your cluster is using bootstrap tokens to join nodes, update the ConfigMap cluster-info in the kube-public namespace with new CA.

    9. Verify the cluster functionality.

      1. Validate the logs from control plane components, along with the kubelet and the kube-proxy are not throwing any tls errors, see looking at the logs.

      2. Validate logs from any aggregated api servers and pods using in-cluster config.

    10. Once the cluster functionality is successfully verified:

      1. Update all service account tokens to include new CA certificate only.

        • All pods using an in-cluster kubeconfig will eventually need to be restarted to pick up the new SA secret for the old CA to be completely untrusted.
      2. Restart the control plane components by removing the old CA from the kubeconfig files and the files against --client-ca-file, --root-ca-file flags resp.