Skip to content

Instantly share code, notes, and snippets.

View fabiocaldeira's full-sized avatar

Fabio Caldeira fabiocaldeira

  • Sao Paulo @ Brasil
View GitHub Profile
@zparnold
zparnold / one_liner.sh
Last active June 25, 2024 07:12
A simply script to delete all failed pods from Kubernetes
kubectl get pods --all-namespaces | grep Evicted | awk '{print $2 " --namespace=" $1}' | xargs kubectl delete pod