You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
571 B
24 lines
571 B
[Unit] |
|
Description=Kubernetes Kubelet Server |
|
Documentation=https://github.com/GoogleCloudPlatform/kubernetes |
|
After=docker.service |
|
Requires=docker.service |
|
|
|
[Service] |
|
WorkingDirectory=/var/lib/kubelet |
|
EnvironmentFile=-/etc/kubernetes/config |
|
EnvironmentFile=-/etc/kubernetes/kubelet |
|
ExecStart=/usr/bin/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
|
|
|