able to list all pods and IP with this command
kubectl get po -o=jsonpath='{range .items[*]}{.metadata.name}{"\t"}{.status.podIP}{"\n"}{end}'
but trying to get a podIP of a pod with a podname. How to retrieve the podIP which met the condition of pod name. Appreciate any help here.