PacoLemon

Kubernetes Delete Evicted Pods

August 5, 2019
Last updated on September 21, 2023
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! 

Comments

Explore Blogs