See CRI-O repository tutorial for details
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
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
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