Reputation: 12684
I want to get the node where the pod i'm trying to investigate run so that I can further debug the azure vm/aws ec2 instance
Upvotes: 0
Views: 572
Reputation: 2967
Try this
oc get pods -o wide
you can get Ip of pod,Ip of node on which pod is running in last column.
Upvotes: 1