Lab 1: Moving from Docker to Podman
If you are on Linux (Fedora/CentOS/RHEL), try this to see how seamless the switch is.
Install Podman:
sudo dnf install -y podmanSet the Alias:
alias docker=podmanRun a container (Notice no sudo!):
docker run --rm -it alpine echo "I am running rootless!"Lab 2: Debugging K8s with crictl
Since Docker is gone from K8s, use crictl (Container Runtime Interface Control).
List running pods on a K8s node:
sudo crictl podsList images:
sudo crictl imagesNote: The syntax is almost identical to Docker!