Lab 4.2 - containerd rather than docker
Is there a guide to using containerd rather than docker for running containers given it'll be removed in 1.24 and this lab currently uses 1.23?
https://kubernetes.io/blog/2022/01/07/kubernetes-is-moving-on-from-dockershim/
"LFS260/SOLUTIONS/s_04/k8scp.sh" sets up kubernetes using docker rather than containerd
Thanks!
Best Answers
-
Fixed this by doing the following to both LFS260/SOLUTIONS/s_04/k8scp.sh and LFS260/SOLUTIONS/s_04/k8sWorker.sh
Remove the following section
and adding the following instead
echo "Install and configure containerd" sleep 2 sudo mkdir -p /etc/containerd sudo apt install -y containerd sudo containerd config default | sudo tee /etc/containerd/config.toml sudo systemctl restart containerd sudo systemctl enable containerd
and changing
sudo apt-get install -y kubeadm=1.23.1-00 kubelet=1.23.1-00 kubectl=1.23.1-00
to
sudo apt-get install -y kubeadm=1.23.1-00 kubelet=1.23.1-00 kubectl=1.23.1-00 --allow-downgrades --allow-change-held-packages
due to some issues with the node I was using.
I hope this helps!
0 -
Fixed this by doing the following tto LFS260/SOLUTIONS/s_04/k8scp.sh
Remove the following section
echo "Install and configure Docker" sleep 2 sudo apt-get install -y docker.io cat <<EOF | sudo tee /etc/docker/daemon.json { "exec-opts": ["native.cgroupdriver=systemd"], "log-driver": "json-file", "log-opts": { "max-size": "100m" }, "storage-driver": "overlay2" } EOF sudo systemctl enable docker sudo systemctl daemon-reload sudo systemctl restart dockerand adding the following instead
echo "Install and configure containerd" sleep 2 sudo mkdir -p /etc/containerd sudo apt install -y containerd sudo containerd config default | sudo tee /etc/containerd/config.toml sudo systemctl restart containerd sudo systemctl enable containerd
and changing
sudo apt-get install -y kubeadm=1.23.1-00 kubelet=1.23.1-00 kubectl=1.23.1-00
to
sudo apt-get install -y kubeadm=1.23.1-00 kubelet=1.23.1-00 kubectl=1.23.1-00 --allow-downgrades --allow-change-held-packages
finally, change
sudo kubeadm init --kubernetes-version 1.23.1 --pod-network-cidr 192.168.0.0/16 --cri-socket "unix:///var/run/containerd/containerd.sock"
to
sudo kubeadm init --kubernetes-version 1.23.1 --pod-network-cidr 192.168.0.0/16 --cri-socket "unix:///var/run/containerd/containerd.sock"
For LFS260/SOLUTIONS/s_04/k8sWorker.sh
Remove the following section
echo "Install and configure Docker" sleep 2 sudo apt-get install -y docker.io cat <<EOF | sudo tee /etc/docker/daemon.json { "exec-opts": ["native.cgroupdriver=systemd"], "log-driver": "json-file", "log-opts": { "max-size": "100m" }, "storage-driver": "overlay2" } EOF sudo systemctl enable docker sudo systemctl daemon-reload sudo systemctl restart dockerand adding the following instead
echo "Install and configure containerd" sleep 2 sudo mkdir -p /etc/containerd sudo apt install -y containerd sudo containerd config default | sudo tee /etc/containerd/config.toml sudo systemctl restart containerd sudo systemctl enable containerd
and changing
sudo apt-get install -y kubeadm=1.23.1-00 kubelet=1.23.1-00 kubectl=1.23.1-00
to
sudo apt-get install -y kubeadm=1.23.1-00 kubelet=1.23.1-00 kubectl=1.23.1-00 --allow-downgrades --allow-change-held-packages
Finally, when running the kubeadm join command, add
--cri-socket "unix:///var/run/containerd/containerd.sock"Eg
```bash
sudo kubeadm join 172.31.254.12:6443 --token super.token --discovery-token-ca-cert-hash sha256:superCA --cri-socket "unix:///var/run/containerd/containerd.sock"
I hope this helps!
1
Categories
- All Categories
- 178 LFX Mentorship
- 178 LFX Mentorship: Linux Kernel
- 775 Linux Foundation IT Professional Programs
- 384 Cloud Engineer IT Professional Program
- 175 Advanced Cloud Engineer IT Professional Program
- 75 DevOps IT Professional Program - Discontinued
- 7 DevOps & GitOps IT Professional Program
- 103 Cloud Native Developer IT Professional Program
- 7.7K Training Courses & Learning Paths
- 13 AI & ML Training
- 1 Blockchain & Decentralized Identity Training
- 35 Cloud & Containers Training
- 3 Cybersecurity Training
- 3 DevOps & Site-Reliability Training
- 2 Linux Kernel Development Training
- 2 Networking Training
- 2 Open Source Best Practice Training
- 5 System Administration Training
- 1 System Engineering Training
- 6 Web & Application Development Training
- 798 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 96 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 92 Storage
- 773 Linux Distributions
- 81 Debian
- 68 Fedora
- 24 Linux Mint
- 13 Mageia
- 24 openSUSE
- 151 Red Hat Enterprise
- 32 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 472 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 103 Linux Security
- 79 Network Management
- 102 System Management
- 46 Web Management
- 166 Mobile Computing
- 32 Android
- 119 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 407 Off Topic
- 128 Introductions
- 35 Study Material
- 1.1K Programming and Development
- 311 Kernel Development
- 723 Software Development
- 1K Software
- 418 Applications
- 183 Command Line
- 5 Compiling/Installing
- 71 Games
- 320 Installation
- Archived
- 183 Small Talk
- 2 LFD140 Class Forum
- 1.4K LFS258 Class Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)