
Init scripts updated to use all-in-one-binary for all services Change-Id: I96518d4c93a64d83a55c542e40d8024781fd95c8
24 lines
603 B
Desktop File
24 lines
603 B
Desktop File
[Unit]
|
|
Description=Kubernetes Kubelet Server
|
|
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
|
|
After=docker.service
|
|
Requires=docker.service
|
|
|
|
[Service]
|
|
EnvironmentFile=-/etc/kubernetes/config
|
|
EnvironmentFile=-/etc/kubernetes/kubelet
|
|
ExecStart=/opt/bin/hyperkube kubelet \
|
|
$KUBE_LOGTOSTDERR \
|
|
$KUBE_LOG_LEVEL \
|
|
$KUBELET_API_SERVER \
|
|
$KUBELET_ADDRESS \
|
|
$KUBELET_PORT \
|
|
$KUBELET_HOSTNAME \
|
|
$KUBE_ALLOW_PRIV \
|
|
$KUBELET_ARGS
|
|
Restart=on-failure
|
|
KillMode=process
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|