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 28, 2025 08:15
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