mirror of https://github.com/k3s-io/k3s
24 lines
649 B
Plaintext
24 lines
649 B
Plaintext
###
|
|
# 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
|
|
|
|
# Comma seperated list of nodes in the etcd cluster
|
|
KUBE_ETCD_SERVERS="--etcd_servers=http://127.0.0.1:4001"
|
|
|
|
# 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 privleged docker containers
|
|
KUBE_ALLOW_PRIV="--allow_privileged=false"
|