2014-10-15 15:55:20 +00:00
|
|
|
###
|
|
|
|
# kubernetes system config
|
|
|
|
#
|
2014-11-11 00:34:21 +00:00
|
|
|
# The following values are used to configure the kube-apiserver
|
2014-10-15 15:55:20 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
# 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.
|
2015-03-20 19:49:58 +00:00
|
|
|
# KUBE_API_PORT="--port=8080"
|
2014-10-15 15:55:20 +00:00
|
|
|
|
|
|
|
# Port minions listen on
|
2015-03-20 19:49:58 +00:00
|
|
|
# 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"
|
2014-10-15 15:55:20 +00:00
|
|
|
|
|
|
|
# Address range to use for services
|
|
|
|
KUBE_SERVICE_ADDRESSES="--portal_net=10.254.0.0/16"
|
|
|
|
|
2015-03-20 19:27:55 +00:00
|
|
|
# default admission control policies
|
2015-05-12 19:19:05 +00:00
|
|
|
KUBE_ADMISSION_CONTROL="--admission_control=NamespaceAutoProvision,LimitRanger,SecurityContextDeny,ServiceAccount,ResourceQuota"
|
2015-03-20 19:27:55 +00:00
|
|
|
|
2015-05-07 22:44:24 +00:00
|
|
|
# Add your own!
|
2014-10-15 15:55:20 +00:00
|
|
|
KUBE_API_ARGS=""
|