### # 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" # How the controller-manager, scheduler, and proxy find the apiserver KUBE_MASTER="--master=http://%%MASTER_IP%%:8080" # Address range to assign service cluster IPs. Must not overlap with any # IP ranges assigned to nodes for pods KUBE_SERVICE="--service-cluster-ip-range=10.32.0.0/24" # The instance prefix for the cluster KUBE_NAME="--cluster-name=kubernetes" # CIDR Range for Pods in cluster KUBE_CIDR="--cluster-cidr=10.200.0.0/24"