Kubernetes Delete Evicted Pods

In case you want to delete it using a command line

Use this command : 

bash
kubectl get pods | grep Evicted | awk '{print $1}' | xargs kubectl delete pod

and see the magic happen! 

Posted in:

Comments