k8s中Evicted状态POD批量删除方法,k8s迁移POD失败后,会有Evicted状态的POD产生,如果批量删除这些POD呢?方法如下
查询Evicted状态的POD命令 kubectl get pods -o wide --all-namespaces |grep "Evicted" 批量删除这些POD命令 kubectl get pods -o wide -n istio-system |grep none |grep Evicted | awk '{system("kubectl delete pod "$1" -n istio-system")}'
效果图如下: