ubuntu getting started guide
This commit is contained in:
9
cluster/ubuntu/default_scripts/etcd
Normal file
9
cluster/ubuntu/default_scripts/etcd
Normal file
@@ -0,0 +1,9 @@
|
||||
# Etcd Upstart and SysVinit configuration file
|
||||
|
||||
# Customize etcd location
|
||||
# ETCD="/opt/bin/etcd"
|
||||
|
||||
# Use ETCD_OPTS to modify the start/restart options
|
||||
ETCD_OPTS="-listen-client-urls=http://127.0.0.1:4001"
|
||||
|
||||
# Add more envionrment settings used by etcd here
|
13
cluster/ubuntu/default_scripts/kube-apiserver
Normal file
13
cluster/ubuntu/default_scripts/kube-apiserver
Normal file
@@ -0,0 +1,13 @@
|
||||
# Kube-Apiserver Upstart and SysVinit configuration file
|
||||
|
||||
# Customize kube-apiserver binary location
|
||||
# KUBE_APISERVER="/opt/bin/kube-apiserver"
|
||||
|
||||
# Use KUBE_APISERVER_OPTS to modify the start/restart options
|
||||
KUBE_APISERVER_OPTS="--address=127.0.0.1 \
|
||||
--port=8080 \
|
||||
--etcd_servers=http://127.0.0.1:4001 \
|
||||
--logtostderr=true \
|
||||
--portal_net=11.1.1.0/24"
|
||||
|
||||
# Add more envionrment settings used by kube-apiserver here
|
11
cluster/ubuntu/default_scripts/kube-controller-manager
Normal file
11
cluster/ubuntu/default_scripts/kube-controller-manager
Normal file
@@ -0,0 +1,11 @@
|
||||
# Kube-Controller-Manager Upstart and SysVinit configuration file
|
||||
|
||||
# Customize kube-controller-manager binary location
|
||||
# KUBE_CONTROLLER_MANAGER="/opt/bin/kube-controller-manager"
|
||||
|
||||
# Use KUBE_CONTROLLER_MANAGER_OPTS to modify the start/restart options
|
||||
KUBE_CONTROLLER_MANAGER_OPTS="--master=127.0.0.1:8080 \
|
||||
--machines=127.0.0.1 \
|
||||
--logtostderr=true"
|
||||
|
||||
# Add more envionrment settings used by kube-controller-manager here
|
10
cluster/ubuntu/default_scripts/kube-proxy
Normal file
10
cluster/ubuntu/default_scripts/kube-proxy
Normal file
@@ -0,0 +1,10 @@
|
||||
# Kube-Proxy Upstart and SysVinit configuration file
|
||||
|
||||
# Customize kube-proxy binary location
|
||||
# KUBE_PROXY="/opt/bin/kube-proxy"
|
||||
|
||||
# Use KUBE_PROXY_OPTS to modify the start/restart options
|
||||
KUBE_PROXY_OPTS="--etcd_servers=http://127.0.0.1:4001 \
|
||||
--logtostderr=true"
|
||||
|
||||
# Add more envionrment settings used by kube-apiserver here
|
10
cluster/ubuntu/default_scripts/kube-scheduler
Normal file
10
cluster/ubuntu/default_scripts/kube-scheduler
Normal file
@@ -0,0 +1,10 @@
|
||||
# Kube-Scheduler Upstart and SysVinit configuration file
|
||||
|
||||
# Customize kube-apiserver binary location
|
||||
# KUBE_SCHEDULER="/opt/bin/kube-apiserver"
|
||||
|
||||
# Use KUBE_SCHEDULER_OPTS to modify the start/restart options
|
||||
KUBE_SCHEDULER_OPTS="--logtostderr=true \
|
||||
--master=127.0.0.1:8080"
|
||||
|
||||
# Add more envionrment settings used by kube-scheduler here
|
13
cluster/ubuntu/default_scripts/kubelet
Normal file
13
cluster/ubuntu/default_scripts/kubelet
Normal file
@@ -0,0 +1,13 @@
|
||||
# Kubelet Upstart and SysVinit configuration file
|
||||
|
||||
# Customize kubelet binary location
|
||||
# KUBELET="/opt/bin/kubelet"
|
||||
|
||||
# Use KUBELET_OPTS to modify the start/restart options
|
||||
KUBELET_OPTS="--address=127.0.0.1 \
|
||||
--port=10250 \
|
||||
--hostname_override=127.0.0.1 \
|
||||
--etcd_servers=http://127.0.0.1:4001 \
|
||||
--logtostderr=true"
|
||||
|
||||
# Add more envionrment settings used by kube-scheduler here
|
Reference in New Issue
Block a user