k8s批量删除Evicted pod
ns是要删除的pod的namespace
kubectl get pods -n ${ns} | grep Evicted | awk '{print $1}' | xargs kubectl delete pod -n ${ns}