Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1007 Bytes

crio-fedora36.md

File metadata and controls

36 lines (28 loc) · 1007 Bytes

Fedora install CRI-O

Install Dependencies

See CRI-O repository tutorial for details

Install CRI-O 1.25

export VERSION=1.25 #update as necessary
dnf update -y
dnf config-manager --add-repo https://download.opensuse.org/repositories/devel:kubic:libcontainers:stable:cri-o:1.25/Fedora_36/devel:kubic:libcontainers:stable:cri-o:1.25.repo
dnf install -y cri-o

Turn on cri-o with tracing by adding a crio.conf.d file

sudo su
mkdir /etc/crio/crio.conf.d
cat <<EOF > /etc/crio/crio.conf.d/otel.conf
[crio.tracing]
tracing_sampling_rate_per_million=999999
enable_tracing=true
EOF

Start cri-o service

systemctl daemon-reload
systemctl start crio # or systemctl enable crio --now
systemctl status crio # should be running
exit

Your system should be running CRI-O, return to README to configure kubeadm