How can we identify and locate the pod definition files of any specific pod that . . .

kandulaz IOT:
how can we identify and locate the pod definition files of any specific pod that is running

kandulaz IOT:
kubectl get pods lists about 7 pods running, I am looking forward to identify the pod definition yaml file

unnivkn:
kubectl run mypod --image=nginx --dry-run=client -oyaml>mypod.yaml

Joe:
The above should work, unless its a static pod. If it is, then you will likely find the pod manifest located at /etc/kubernetes/manifests

This is the default location that kubelet looks for the static pod files

Tej_Singh_Rana:
In case, if pod is already running.

kubectl get po <pod-name> -oyaml 


If want to store in a file then use " > file.yaml" in the end.