
1. default_scripts/kube-apiserver parametres updates: Replaced: address, ports with insecure-bind-address, insecure-port Added: service-cluster-ip-range, admission-control, advertise-address Depricated: portal_net 2. environ/apiserver parametres updates: Updated: KUBE_API_ADDRESS, KUBE_API_PORTS Added: KUBE_API_IP Depricated: KUBE_API_ARGS 3. systemd/kube-apiserver.service parametres updates: Added: KUBE_API_IP Update: KUBE_SERVICE_ADDRESSES with KUBE_SERVICE Depricated: KUBE_API_ARGS 4. default_scripts/kube-controller-manager updates: Added: New params for KUBE_CONTROLLER_MANAGER_OPTS such as service-cluster-ip-range, cluster-cidr, cluster-name 5. systemd/kube-controller-manager.service updates: Added: new argumunets to start up command such as KUBE_SERVICE, KUBE_NAME, KUBE_CIDR Removed: KUBE_CONTROLLER_MANAGER_ARGS 6. kube-config updates with new Added new argumunets to start up command such as KUBE_SERVICE, KUBE_NAME, KUBE_CIDR 7. scripts/master-kube-setup.sh update: Set Master IP value for apiserver and kube-apiserver scripts Change-Id: I808ef5459e5fd5f1f5c916ddd3f94beab05e5c5d
33 lines
973 B
Plaintext
33 lines
973 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
|
|
# 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"
|