You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
655 B
22 lines
655 B
### |
|
# kubernetes system config |
|
# |
|
# The following values are used to configure various aspects of all |
|
# kubernetes services, including |
|
# |
|
# kube-apiserver.service |
|
# kube-controller-manager.service |
|
# kube-scheduler.service |
|
# kubelet.service |
|
# kube-proxy.service |
|
# logging to stderr means we get it in the systemd journal |
|
KUBE_LOGTOSTDERR="--logtostderr=true" |
|
|
|
# journal message level, 0 is debug |
|
KUBE_LOG_LEVEL="--v=0" |
|
|
|
# Should this cluster be allowed to run privileged docker containers |
|
KUBE_ALLOW_PRIV="--allow-privileged=false" |
|
|
|
# How the controller-manager, scheduler, and proxy find the apiserver |
|
KUBE_MASTER="--master=http://127.0.0.1:8080"
|
|
|