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.
|
|
|
|
KUBE_API_PORT="--port=8080"
|
|
|
|
|
2014-11-11 00:34:21 +00:00
|
|
|
# How the replication controller and scheduler find the kube-apiserver
|
2014-10-15 15:55:20 +00:00
|
|
|
KUBE_MASTER="--master=127.0.0.1:8080"
|
|
|
|
|
|
|
|
# Port minions listen on
|
2014-10-29 16:33:34 +00:00
|
|
|
KUBELET_PORT="--kubelet_port=10250"
|
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
|
|
|
|
KUBE_ADMISSION_CONTROL="--admission_control=NamespaceAutoProvision,LimitRanger,ResourceQuota"
|
|
|
|
|
2014-10-15 15:55:20 +00:00
|
|
|
# Add you own!
|
|
|
|
KUBE_API_ARGS=""
|