Skip to content

Instantly share code, notes, and snippets.

@canhnt
Last active June 8, 2018 07:44
Show Gist options
  • Save canhnt/4a5beced742d24b69c8e1c9743ae4111 to your computer and use it in GitHub Desktop.
Save canhnt/4a5beced742d24b69c8e1c9743ae4111 to your computer and use it in GitHub Desktop.
Delete all evicted pods
kubectl get pod --all-namespaces | grep Evicted | grep 10d | awk '{print $1" " $2}' | xargs -n2 sh -c 'kubectl delete pod $2 -n $1' sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment