2017-11-11 19:14:21 +08:00
|
|
|
[Unit]
|
|
|
|
Description=Kubernetes Kubelet
|
|
|
|
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
WorkingDirectory=/var/lib/kubelet
|
2020-09-27 19:21:50 +08:00
|
|
|
{% if ansible_distribution == "Debian" and ansible_distribution_version|int >= 10 %}
|
|
|
|
ExecStartPre=/bin/mount -o remount,rw '/sys/fs/cgroup'
|
|
|
|
{% endif %}
|
2019-06-25 22:55:29 +08:00
|
|
|
{% if KUBE_RESERVED_ENABLED == "yes" or SYS_RESERVED_ENABLED == "yes" %}
|
2020-05-23 15:16:01 +08:00
|
|
|
ExecStartPre=/bin/mkdir -p /sys/fs/cgroup/cpu/podruntime.slice
|
|
|
|
ExecStartPre=/bin/mkdir -p /sys/fs/cgroup/cpuacct/podruntime.slice
|
|
|
|
ExecStartPre=/bin/mkdir -p /sys/fs/cgroup/cpuset/podruntime.slice
|
|
|
|
ExecStartPre=/bin/mkdir -p /sys/fs/cgroup/memory/podruntime.slice
|
|
|
|
ExecStartPre=/bin/mkdir -p /sys/fs/cgroup/pids/podruntime.slice
|
|
|
|
ExecStartPre=/bin/mkdir -p /sys/fs/cgroup/systemd/podruntime.slice
|
|
|
|
|
|
|
|
ExecStartPre=/bin/mkdir -p /sys/fs/cgroup/cpu/system.slice
|
|
|
|
ExecStartPre=/bin/mkdir -p /sys/fs/cgroup/cpuacct/system.slice
|
|
|
|
ExecStartPre=/bin/mkdir -p /sys/fs/cgroup/cpuset/system.slice
|
|
|
|
ExecStartPre=/bin/mkdir -p /sys/fs/cgroup/memory/system.slice
|
|
|
|
ExecStartPre=/bin/mkdir -p /sys/fs/cgroup/pids/system.slice
|
|
|
|
ExecStartPre=/bin/mkdir -p /sys/fs/cgroup/systemd/system.slice
|
2020-09-27 19:21:50 +08:00
|
|
|
|
|
|
|
{% if ansible_distribution != "Debian" %}
|
|
|
|
ExecStartPre=/bin/mkdir -p /sys/fs/cgroup/hugetlb/podruntime.slice
|
|
|
|
ExecStartPre=/bin/mkdir -p /sys/fs/cgroup/hugetlb/system.slice
|
|
|
|
{% endif %}
|
2019-05-22 00:06:21 +08:00
|
|
|
{% endif %}
|
2017-11-11 19:14:21 +08:00
|
|
|
ExecStart={{ bin_dir }}/kubelet \
|
2019-07-13 11:01:08 +08:00
|
|
|
--config=/var/lib/kubelet/config.yaml \
|
2018-09-11 20:46:46 +08:00
|
|
|
--cni-bin-dir={{ bin_dir }} \
|
|
|
|
--cni-conf-dir=/etc/cni/net.d \
|
2019-05-18 16:48:58 +08:00
|
|
|
{% if CONTAINER_RUNTIME == "containerd" %}
|
|
|
|
--container-runtime=remote \
|
|
|
|
--container-runtime-endpoint=unix:///run/containerd/containerd.sock \
|
|
|
|
{% endif %}
|
2018-09-11 20:46:46 +08:00
|
|
|
--hostname-override={{ inventory_hostname }} \
|
2021-01-17 23:59:40 +08:00
|
|
|
--image-pull-progress-deadline=5m \
|
2018-09-11 20:46:46 +08:00
|
|
|
--kubeconfig=/etc/kubernetes/kubelet.kubeconfig \
|
|
|
|
--network-plugin=cni \
|
2019-01-10 23:51:50 +08:00
|
|
|
--pod-infra-container-image={{ SANDBOX_IMAGE }} \
|
2018-08-29 22:16:50 +08:00
|
|
|
--root-dir={{ KUBELET_ROOT_DIR }} \
|
2017-11-11 19:14:21 +08:00
|
|
|
--v=2
|
2019-07-19 13:47:10 +08:00
|
|
|
Restart=always
|
2017-11-11 19:14:21 +08:00
|
|
|
RestartSec=5
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|