
only set the etcd servers in the apiserver config set the --master= in the global config still need --api_servers= different in kubelet because, ummmm, we do comment out the apiserver config in controller and scheduler, not needed point the proxy to api, not to etcd
27 lines
691 B
Plaintext
27 lines
691 B
Plaintext
###
|
|
# kubernetes system config
|
|
#
|
|
# The following values are used to configure the kube-apiserver
|
|
#
|
|
|
|
# The address on the local server to listen to.
|
|
KUBE_API_ADDRESS="--address=127.0.0.1"
|
|
|
|
# The port on the local server to listen on.
|
|
# KUBE_API_PORT="--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"
|
|
|
|
# Address range to use for services
|
|
KUBE_SERVICE_ADDRESSES="--portal_net=10.254.0.0/16"
|
|
|
|
# default admission control policies
|
|
KUBE_ADMISSION_CONTROL="--admission_control=NamespaceAutoProvision,LimitRanger,ResourceQuota"
|
|
|
|
# Add you own!
|
|
KUBE_API_ARGS=""
|