Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save transhapHigsn/a9b76fd0070fa79e91e74d453eff9d3d to your computer and use it in GitHub Desktop.
Save transhapHigsn/a9b76fd0070fa79e91e74d453eff9d3d to your computer and use it in GitHub Desktop.
Delete evicted pods
kubectl get pods | grep Evicted | awk '{print $1}' | xargs kubectl delete pod
@transhapHigsn
Copy link
Author

kubectl get pods -n namespace | grep Evicted | awk '{print $1}' | xargs kubectl delete pod -n namespace

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment