top of page
  • Twitter
  • Linkedin

How to check on which Node POD is running ?

  • Writer: Amod Kadam
    Amod Kadam
  • May 9, 2024
  • 1 min read
ree

Method 1

kubectl get po -o wide
ree

If using Minikube you should see the following

ree

Method 2


kubectl describe no 

This provides a complete list of of PODS running on that node. This is quite handy in case you want to know which PODs are running on the node.


ree




Comments


bottom of page