b1db376
###
b1db376
# kubernetes system config
b1db376
#
b1db376
# The following values are used to configure the kube-apiserver
b1db376
#
b1db376
b1db376
# The address on the local server to listen to.
b1db376
KUBE_API_ADDRESS="--insecure-bind-address=127.0.0.1"
b1db376
b1db376
# The port on the local server to listen on.
b1db376
# KUBE_API_PORT="--port=8080"
b1db376
b1db376
# Port minions listen on
b1db376
# KUBELET_PORT="--kubelet-port=10250"
b1db376
b1db376
# Comma separated list of nodes in the etcd cluster
b1db376
KUBE_ETCD_SERVERS="--etcd-servers=http://127.0.0.1:2379,http://127.0.0.1:4001"
b1db376
b1db376
# Address range to use for services
b1db376
KUBE_SERVICE_ADDRESSES="--service-cluster-ip-range=10.254.0.0/16"
b1db376
b1db376
# default admission control policies
b1db376
KUBE_ADMISSION_CONTROL="--admission-control=NamespaceLifecycle,LimitRanger,SecurityContextDeny,ServiceAccount,ResourceQuota"
b1db376
b1db376
# Add your own!
b1db376
KUBE_API_ARGS=""