In kubernetes, what is the command to show the ip addresses of a running pods?

sivasaiganesh:
In kubernetes, what is the command to show the ip addresses of a running pods?

Mahesh:
kubectl get pods -o wide should display IP address of running pods for you.

Mahesh:
You may also find this URL helpful: https://kubernetes.io/docs/reference/kubectl/cheatsheet/#viewing-finding-resources

sivasaiganesh:
Thank you @Mahesh