Information
Do not allow all requests. Enable explicit authorization.
Rationale:
Kubelets, by default, allow all authenticated requests (even anonymous ones) without needing explicit authorization checks from the apiserver. You should restrict this behavior and only allow explicitly authorized requests.
Solution
Edit the `/etc/kubernetes/kubelet` file on each node and set the `KUBELET_ARGS` parameter to `'--authorization-mode=Webhook'`: `KUBELET_ARGS='--authorization-mode=Webhook'`
Based on your system, restart the `kubelet` service. For example: `systemctl restart kubelet.service`
Impact:
Unauthorized requests will be denied.