### # kubernetes system config # # The following values are used to configure the kube-apiserver # # The IP address on the local server to serve the --insecure-port. KUBE_API_ADDRESS="--insecure-bind-address=0.0.0.0" # The port on which to serve unsecured, unauthenticated access. # KUBE_API_PORT="--insecure-port=8080" # Port minions listen on # KUBELET_PORT="--kubelet-port=10250" # Comma separated list of nodes in the etcd cluster KUBE_ETCD_SERVERS="--etcd-servers=http://127.0.0.1:4001" # Default admission control policies KUBE_ADMISSION_CONTROL="--admission-control=NamespaceLifecycle,NamespaceExists,LimitRanger,SecurityContextDeny,ResourceQuota" # The IP address on which to advertise the apiserver to cluster members KUBE_API_IP="--advertise-address=%%MASTER_IP%%"