This message was deleted.
# general
a
This message was deleted.
c
because rke2 doesn’t use docker? you shouldn’t even have docker installed on the nodes in the first place.
g
oh, what does it use then ?
c
you might check out the docs
g
thanks lemme give it a read
hmm in this case,
ctr containers list
returns nothing still 🤔
c
did you get errors
g
just empty, but the thing im trying to investigate is why this shows up
Copy code
Back-off restarting failed container kube-proxy in pod kube-proxy-zulon-worker0_kube-system
c
I suspect you’re probably talking to the system docker/containerd instance, not rke2's containerd
g
ahh ok, lemme remove docker
c
like I said you shouldn’t have docker/containerd on there at all
try
Copy code
export CONTAINER_RUNTIME_ENDPOINT="unix:///var/run/k3s/containerd/containerd.sock"
crictl ps
it is possible for both containerd instances to operate side by side, but you can get weird behavior and it isn’t recommended. Its less confusing if you don’t have it installed at all.
g
hmm maybe i'll reset my whole cluster, this time i'll build the nodes from an image that doesnt have docker
thanks for the guidance !