본문 바로가기
쿠버네티스

[Kubernetes] Containerd 설치하기 - k8s container runtime

by 알 수 없는 사용자 2023. 6. 20.
반응형

쿠버네티스는 docker와 containerd를 container runtime으로 사용할 수 있다.

이 포스팅에서는 containerd를 설치하는 방법을 설명하겠다.


apt update  

apt-get install -y apt-transport-https ca-certificates curl software-properties-common gnupg2 nfs-common  

curl -fsSL [https://download.docker.com/linux/debian/gpg](https://download.docker.com/linux/debian/gpg) | apt-key add -  

add-apt-repository "deb \[arch=amd64\] [https://download.docker.com/linux/debian](https://download.docker.com/linux/debian) $(lsb\_release -cs) stable"  

apt-get update  

apt-get install -y containerd.io=1.6.15-1  

containerd config default > /etc/containerd/config.toml  

cd /etc/containerd  

sed -i 's/SystemdCgroup = false/SystemdCgroup = true/g' config.toml  

cd /root  

systemctl restart containerd



"sed -i 's/SystemdCgroup = false/SystemdCgroup = true/g' config.toml" 부분은

SystemdCgroup을 true 로 바꾸어서 쿠버네티스에서 인식하여 사용할 수 있다.

반응형