Difference between revisions of "List containers on a POD"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
[[kubectl get pods]] YourPOD -o [[jsonpath]]='{[[.spec.containers]][*].name}' | [[kubectl get pods]] YourPOD -o [[jsonpath]]='{[[.spec.containers]][*].name}' | ||
+ | |||
+ | |||
+ | cat /yourfile.txt | while read line; do for i in "$line"; do set -- $i; kubectl get pods -n $1 $2 -o jsonpath='{.spec.containers[*].name}'; xargs -n1; done; done | ||
Revision as of 14:25, 28 September 2023
kubectl get pods YourPOD -o jsonpath='{.spec.containers[*].name}'
cat /yourfile.txt | while read line; do for i in "$line"; do set -- $i; kubectl get pods -n $1 $2 -o jsonpath='{.spec.containers[*].name}'; xargs -n1; done; done
kubectl get pods -A kubectl get pods -A -o=name kubectl get --no-headers pods -o custom-columns=":metadata.name" kubectl get ns while read line kubectl get pods -n kube-system
See also
Advertising: