반응형
쿠버네티스는 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 로 바꾸어서 쿠버네티스에서 인식하여 사용할 수 있다.
반응형
'쿠버네티스' 카테고리의 다른 글
[Kubernetes] 쿠버네티스 CNI 설치 -flannel (0) | 2023.06.20 |
---|---|
[Kubernetes] 쿠버네티스 클러스터 구축 (0) | 2023.06.20 |
[Kubernetes] 노드 IP 변경 방법 (0) | 2023.06.20 |
[Kubernetes] 쿠버네티스(k8s) 1.25.3 설치하기 (0) | 2023.06.20 |
[리눅스 명령어] free 메모리 사용량 확인 (0) | 2021.09.08 |