
Init scripts updated to use all-in-one-binary for all services Change-Id: I96518d4c93a64d83a55c542e40d8024781fd95c8
15 lines
443 B
Plaintext
15 lines
443 B
Plaintext
# Kubelet Upstart and SysVinit configuration file
|
|
|
|
# Customize kubelet binary location
|
|
KUBELET="/opt/bin/hyperkube kubelet"
|
|
|
|
# Use KUBELET_OPTS to modify the start/restart options
|
|
KUBELET_OPTS="--address=%%IP%% \
|
|
--port=10250 \
|
|
--hostname_override=%%IP%% \
|
|
--api_servers=%%MASTER_IP%%:8080 \
|
|
--logtostderr=false \
|
|
--log_dir=/var/log/kubernetes \
|
|
--allow_privileged=true"
|
|
|
|
# Add more environment settings used by kube-scheduler here |