Information
Do not bind to insecure port.
Rationale:
Setting up the apiserver to serve on an insecure port would allow unauthenticated and unencrypted access to your master node. It is assumed that firewall rules are set up such that this port is not reachable from outside of the cluster. But, as a defense in depth measure, you should not use an insecure port.
Solution
Edit the `/etc/kubernetes/apiserver` file on the master node and set `--insecure-port=0` in the `KUBE_API_PORT` parameter. Based on your system, restart the `kube-apiserver` service. For example: `systemctl restart kube-apiserver.service`
Impact:
All components that use the API must connect via the secured port, authenticate themselves, and be authorized to use the API. This includes: - kube-controller-manager - kube-proxy - kube-scheduler - kubelets