Skip to content

Instantly share code, notes, and snippets.

@ipedrazas
Created January 15, 2019 11:28
Show Gist options
  • Save ipedrazas/2c33ce492fd3840605f9903572685393 to your computer and use it in GitHub Desktop.
Save ipedrazas/2c33ce492fd3840605f9903572685393 to your computer and use it in GitHub Desktop.
Delete Evicted Pods
kubectl get po -a --all-namespaces -o json | \
jq '.items[] | select(.status.reason!=null) | select(.status.reason | contains("Evicted")) |
"kubectl delete po \(.metadata.name) -n \(.metadata.namespace) --grace-period=0 --force " ' | xargs -n 1 bash -c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment