Skip to content

Instantly share code, notes, and snippets.

@abdennour
Created September 7, 2019 10:13
Show Gist options
  • Select an option

  • Save abdennour/e440038eb786f3bc54fb5c75ab2826f2 to your computer and use it in GitHub Desktop.

Select an option

Save abdennour/e440038eb786f3bc54fb5c75ab2826f2 to your computer and use it in GitHub Desktop.
Clean Useless Pods
kubectl get po --all-namespaces --field-selector 'status.phase==Failed' -o json | kubectl delete -f -
kubectl get po --all-namespaces --field-selector 'status.phase==Evicted' -o json | kubectl delete -f -
kubectl get po --all-namespaces --field-selector 'status.phase==Pending' -o json | kubectl delete -f -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment