You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the control pane section, you expose the apiserver the insecure port on all interfaces:
--insecure-bind-address=0.0.0.0
Since the insecure port is only used by the kube-controller-manager and kube-scheduler, which use the loopback adapter to connect to the api-server, it would be a lot safer to use:
--insecure-bind-address=127.0.0.1
This little change will result in a cluster which is a lot more secure, without any side-effects.
The text was updated successfully, but these errors were encountered:
Fixed! This is the configuration on master (tagged 1.8) and will remain the setting going forward. We also enabled --authorization-mode=Webhook on the kubelet.
Hi,
In the control pane section, you expose the apiserver the insecure port on all interfaces:
--insecure-bind-address=0.0.0.0
Since the insecure port is only used by the kube-controller-manager and kube-scheduler, which use the loopback adapter to connect to the api-server, it would be a lot safer to use:
--insecure-bind-address=127.0.0.1
This little change will result in a cluster which is a lot more secure, without any side-effects.
The text was updated successfully, but these errors were encountered: