Skip to content

Instantly share code, notes, and snippets.

@iamcryptoki
Created March 16, 2021 08:53
Show Gist options
  • Select an option

  • Save iamcryptoki/dbb209cefd731fa71f3f06fcc29f2070 to your computer and use it in GitHub Desktop.

Select an option

Save iamcryptoki/dbb209cefd731fa71f3f06fcc29f2070 to your computer and use it in GitHub Desktop.
Kubernetes: Delete evicted pods.
kubectl get pod -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