Skip to content

Instantly share code, notes, and snippets.

@remoteur
Last active December 1, 2021 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save remoteur/ad543073a9d6ea226ea18fe8367470d8 to your computer and use it in GitHub Desktop.
Save remoteur/ad543073a9d6ea226ea18fe8367470d8 to your computer and use it in GitHub Desktop.
oc template
./oc get pods -A --template '{{range .items}}{{if eq .status.phase "Running"}}{{.metadata.name}}{{"\n"}}{{end}}{{end}}'
oc get pods -A --template '{{range .items}}{{if and (ne .status.phase "Running") (ne .status.phase "Succeeded") }}{{.metadata.name}}{{"\n"}}{{end}}{{end}}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment