mirror of https://github.com/easzlab/kubeasz.git
22 lines
548 B
Plaintext
22 lines
548 B
Plaintext
|
[Unit]
|
||
|
Description=containerd container runtime
|
||
|
Documentation=https://containerd.io
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
Environment="PATH={{ bin_dir }}:/bin:/sbin:/usr/bin:/usr/sbin"
|
||
|
ExecStart={{ bin_dir }}/containerd
|
||
|
Restart=always
|
||
|
RestartSec=5
|
||
|
Delegate=yes
|
||
|
KillMode=process
|
||
|
OOMScoreAdjust=-999
|
||
|
LimitNOFILE=1048576
|
||
|
# Having non-zero Limit*s causes performance problems due to accounting overhead
|
||
|
# in the kernel. We recommend using cgroups to do container-local accounting.
|
||
|
LimitNPROC=infinity
|
||
|
LimitCORE=infinity
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|