28 lines
634 B
Plaintext
28 lines
634 B
Plaintext
|
[Unit]
|
||
|
Description=Kubernetes Kubelet Server
|
||
|
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
|
||
|
After=docker.service
|
||
|
Wants=docker.socket
|
||
|
|
||
|
[Service]
|
||
|
User=root
|
||
|
EnvironmentFile=-{{ kube_config_dir }}/kubelet.env
|
||
|
ExecStartPre=-/bin/mkdir -p {{ kubelet_flexvolumes_plugins_dir }}
|
||
|
ExecStart={{ bin_dir }}/kubelet \
|
||
|
$KUBE_LOGTOSTDERR \
|
||
|
$KUBE_LOG_LEVEL \
|
||
|
$KUBELET_API_SERVER \
|
||
|
$KUBELET_ADDRESS \
|
||
|
$KUBELET_PORT \
|
||
|
$KUBELET_HOSTNAME \
|
||
|
$KUBELET_ARGS \
|
||
|
$DOCKER_SOCKET \
|
||
|
$KUBELET_NETWORK_PLUGIN \
|
||
|
$KUBELET_VOLUME_PLUGIN \
|
||
|
$KUBELET_CLOUDPROVIDER
|
||
|
Restart=always
|
||
|
RestartSec=10s
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|