How to get a list of pods that have status Running without resorting to external commands?

5/26/2017

Is it possible to get a list of pods that have status Running from kubectl?

Using an external command it would be:

kubectl get pods | grep Running

Can I ask this from kubectl directly instead of string matching with grep or awk?

-- Erik
kubectl
kubernetes

1 Answer

5/28/2017

You can use a golang template: kubectl get pods --all-namespaces -o go-template --template '{{range .items}}{{if eq (.status.phase) ("Running")}}{{.metadata.name}}{{"\n"}}{{end}}{{end}}' Of course {{.metadata.name}} can be replaced or extended with any informations you need.

-- Adam Otto
Source: StackOverflow