Skip to content

Instantly share code, notes, and snippets.

View udp1024's full-sized avatar

Salman Siddiqui udp1024

View GitHub Profile
@zparnold
zparnold / one_liner.sh
Last active October 23, 2024 20:28
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