
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
24 lines
781 B
Plaintext
24 lines
781 B
Plaintext
###
|
|
# kubernetes system config
|
|
#
|
|
# The following values are used to configure the kube-apiserver
|
|
#
|
|
|
|
# The IP address on the local server to serve the --insecure-port.
|
|
KUBE_API_ADDRESS="--insecure-bind-address=0.0.0.0"
|
|
|
|
# The port on which to serve unsecured, unauthenticated access.
|
|
# KUBE_API_PORT="--insecure-port=8080"
|
|
|
|
# Port minions listen on
|
|
# KUBELET_PORT="--kubelet-port=10250"
|
|
|
|
# Comma separated list of nodes in the etcd cluster
|
|
KUBE_ETCD_SERVERS="--etcd-servers=http://127.0.0.1:4001"
|
|
|
|
# Default admission control policies
|
|
KUBE_ADMISSION_CONTROL="--admission-control=NamespaceLifecycle,NamespaceExists,LimitRanger,SecurityContextDeny,ResourceQuota"
|
|
|
|
# The IP address on which to advertise the apiserver to cluster members
|
|
KUBE_API_IP="--advertise-address=%%MASTER_IP%%"
|