Information
Setup TLS connection on the Kubelets.
Rationale:
Kubelet communication contains sensitive parameters that should remain encrypted in transit. Configure the Kubelets to serve only HTTPS traffic.
Solution
Follow the Kubernetes documentation and set up the TLS connection on the Kubelet. Then, edit the `/etc/kubernetes/kubelet` file on the master node and set the `KUBELET_ARGS` parameter to include `'--tls-cert-file='` and `'--tls-private-key-file='`: `KUBELET_ARGS='--tls-cert-file= --tls-private-key-file='`
Based on your system, restart the `kubelet` service. For example: `systemctl restart kubelet.service`
Impact:
TLS and client certificate authentication must be configured for your Kubernetes cluster deployment.