2014-10-15 15:55:20 +00:00
|
|
|
###
|
|
|
|
# kubernetes system config
|
|
|
|
#
|
|
|
|
# The following values are used to configure the kubernetes-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"
|
|
|
|
|
|
|
|
# How the replication controller and scheduler find the apiserver
|
|
|
|
KUBE_MASTER="--master=127.0.0.1:8080"
|
|
|
|
|
|
|
|
# Comma seperated list of minions
|
|
|
|
MINION_ADDRESSES="--machines=127.0.0.1"
|
|
|
|
|
|
|
|
# Port minions listen on
|
2014-10-29 15:04:50 +00:00
|
|
|
MINION_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"
|
|
|
|
|
|
|
|
# Add you own!
|
|
|
|
KUBE_API_ARGS=""
|