Install Container Runtime cri-o
Install Container Runtime (crio) [ Fedora ]
- Steps to install crio in [Fedora]
dnf module list cri-o
VERSION=1.18
dnf module enable cri-o:$VERSION
dnf install cri-o- Download
crictlexecutable for checking the successfull status of containerd | Official Documentation
VERSION="v1.26.0"
wget https://github.com/kubernetes-sigs/cri-tools/releases/download/$VERSION/crictl-$VERSION-linux-amd64.tar.gz
sudo tar zxvf crictl-$VERSION-linux-amd64.tar.gz -C /usr/local/bin
rm -f crictl-$VERSION-linux-amd64.tar.gz- Add the below lines in the file:
/etc/crictl.yaml
runtime-endpoint: unix:///var/run/containerd/containerd.sock
image-endpoint: unix:///var/run/containerd/containerd.sock
timeout: 2- Run
crictl imagesandcrictl ps -ato ensure containerd is successfully runing.