Information
Enable kubelet client certificate rotation.
Rationale:
`RotateKubeletClientCertificate` causes the kubelet to rotate its client certificates by creating new CSRs as its existing credentials expire. This automated periodic rotation ensures that the there are no downtimes due to expired certificates and thus addressing availability in the CIA security triad. Note: This recommendation only applies if you let kubelets get their certificates from the API server. In case your kubelet certificates come from an outside authority/tool (e.g. Vault) then you need to take care of rotation yourself.
Solution
Edit the `/etc/kubernetes/kubelet` file on each node and set the `KUBELET_ARGS` parameter to a value to include `'--feature-gates=RotateKubeletClientCertificate=true'`. `KUBELET_ARGS='--feature-gates=RotateKubeletClientCertificate=true'`
Based on your system, restart the `kubelet` service. For example: `systemctl restart kubelet.service`
Impact:
None