1. How to delete all evicted pods in kubernetes: kubectl get pod -n <ns> | grep Evicted | awk '{print $1}' | xargs kubectl delete pod -n <ns>