
Fix the way hyperkube starts for sysv and upstart Change-Id: If682033af5f5d58b64cec463d6d379bf79b06c8e
15 lines
435 B
Plaintext
15 lines
435 B
Plaintext
# Kubelet Upstart and SysVinit configuration file
|
|
|
|
# Customize kubelet binary location
|
|
KUBELET="/opt/bin/hyperkube"
|
|
|
|
# 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 |