2 # kubernetes system config
4 # The following values are used to configure various aspects of all
5 # kubernetes services, including
7 # kube-apiserver.service
8 # kube-controller-manager.service
9 # kube-scheduler.service
12 # logging to stderr means we get it in the systemd journal
13 KUBE_LOGTOSTDERR="--logtostderr=true"
15 # journal message level, 0 is debug
16 KUBE_LOG_LEVEL="--v=0"
18 # Should this cluster be allowed to run privileged docker containers
19 KUBE_ALLOW_PRIV="--allow-privileged=false"
21 # How the controller-manager, scheduler, and proxy find the apiserver
22 KUBE_MASTER="--master=http://127.0.0.1:8080"