k8s 批量删除pod
时间: 2023-11-25 15:51:51 浏览: 183
k8s-utils
以下是两种在k8s中批量删除pod的方法:
1. 通过kubectl delete批量删除全部Pod
```shell
kubectl delete pod --all
```
2. 选择STATUS列,查看某namespace的非Running的记录,然后删除这些pod
```shell
kubectl get pods -n <namespace> | grep -v Running | awk '{print $1}' | xargs kubectl delete -n <namespace> pods
```
阅读全文