How to check container runtime of k8s worker node

Photo by Growtika on Unsplash

How to check container runtime of k8s worker node

AWS/EKS

  • outline

How to check container runtime of k8s worker node using kubectl command

  • script

kubectl get nodes -o jsonpath='{range .items[*]}{.metadata.name}{"\t"}{.status.nodeInfo.containerRuntimeVersion}{"\n"}{end}'
  • reference

https://kubernetes.io/docs/tasks/administer-cluster/migrating-from-dockershim/find-out-runtime-you-use/