How do we find the container runtime of a given cluster? I checked the kubelet . . .

Jacob Vaidyan:
How do we find the container runtime of a given cluster? I checked the kubelet configuration but didn’t see an entry that gives this information.

Suresh Sivanantham:
–container-runtime arg in kubelet.?

Suresh Sivanantham:
mine says docker is the container runtime (im on minikube)

Barahalikar Siddharth:
Do a simple,
kubectl get node -o wide and it should show which container runtime is being used by the nodes

Jacob Vaidyan:
Thanks guys