Information
Disable anonymous requests to the Kubelet server.
Rationale:
When enabled, requests that are not rejected by other configured authentication methods are treated as anonymous requests. These requests are then served by the Kubelet server. You should rely on authentication to authorize access and disallow anonymous requests.
Solution
Edit the `/etc/kubernetes/kubelet` file on each node and set the `KUBELET_ARGS` parameter to `'--anonymous-auth=false'`: `KUBELET_ARGS='--anonymous-auth=false'`
Based on your system, restart the `kubelet` service. For example: `systemctl restart kubelet.service`
Impact:
Anonymous requests will be rejected.