Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save banchl/bf164e3fc2e0ed4adee2676c3cfd220f to your computer and use it in GitHub Desktop.

Select an option

Save banchl/bf164e3fc2e0ed4adee2676c3cfd220f to your computer and use it in GitHub Desktop.
Delete evicted pods
kubectl get pods | grep Evicted | awk '{print $1}' | xargs kubectl delete pod
@banchl
Copy link
Copy Markdown
Author

banchl commented Feb 16, 2023

alias xargs='xargs '
kubectl_xxx get pods | grep Evicted | awk '{print $1}' | xargs kubectl_xxx delete pod

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