Edit this post Kubernetes Delete Evicted Pods Yulius Aug 5 In case you want to delete it using a command lineUse this command : bashkubectl get pods | grep Evicted | awk '{print $1}' | xargs kubectl delete podand see the magic happen!
Comments
Post a Comment