Podman ? #4277
-
It's possible to use Podman as container runtime? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
As far as I know podman doesn't provide a CRI socket for the Kubelet to connect to, since it's just a daemonless replacement for the CLI portion of docker. I believe you would need to use something else like cri-o. |
Beta Was this translation helpful? Give feedback.
-
Some background for future searchers of this same topic: CRI is the interface needed by k3s/k8s. The docker daemon supports 2 different endpoint interface sets from the same socket: CRI and the CLI client interface. CRI-O and podman use the same image cache storage technology, and it's possible to use K8s and K3s technically only need a daemon supporting the CRI interface. Historically this was It is technically possible, though not directly supported, to use CRI-O as the K3s backend if you setup CRI-O yourself and then point the K3s server at it with the |
Beta Was this translation helpful? Give feedback.
As far as I know podman doesn't provide a CRI socket for the Kubelet to connect to, since it's just a daemonless replacement for the CLI portion of docker. I believe you would need to use something else like cri-o.