kubernetes-批量删除Evicted Pods

删除驱逐的 pod

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

强制删除的命令

1
kubectl get pods -n network | grep Evicted | awk '{print $1}' | xargs kubectl delete pod -n network  --grace-period 0 --force
Licensed under CC BY-NC-SA 4.0
最后更新于 Jan 06, 2025 05:52 UTC
comments powered by Disqus
Built with Hugo
主题 StackJimmy 设计
Caret Up