- 博客/
快速删除 Rancher 中 失败的 pod资源
作者
Johny
熟练的 云原生搬砖师
在 Rancher 管理的集群中,有的时候会出现对应
副本集
出现 pod 部署失败的情况,比如像下面的图片所示,在多的时候可达上千,又不想手动的去一一点击删除,这里介绍一键清理的方法和步骤
使用 kubectl
执行如下步骤,一键删除
IFS='
'
for i in `kubectl get po --all-namespaces |grep -i 'MatchNodeSelector'`;do kubectl delete po `echo $i|awk '{print $2}'` -n `echo $i|awk '{print $1}'` ;done
相关文章
Gocron 实践安装,实现统一定时任务管理平台
·599 字·2 分钟·
centos
linux
gocron
docker
使用 Helm 配合 localPV 在 K8s 中部署 Mariadb 主程复制集群
·1640 字·4 分钟·
k8s
helm
mariadb
localpv
使用 Helm 部署 Spinnaker 持续部署(CD)平台
·2781 字·6 分钟·
devops
k8s
helm
spinnaker
ci-cd
使用 helm 在 Kubernetes 中部署 Nexus 私服
·2270 字·5 分钟·
k8s
devops
helm
nexus3
Rancher 开启监控后的,阈值告警配置说明 (三)
·1032 字·3 分钟·
devops
k8s
prometheus
alertmanage
rancher
prometheus
operator
k8s
kubekey
exporter
Rancher 开启监控后,exporter/metrics 的添加说明 (二)
·2662 字·6 分钟·
devops
k8s
prometheus
rancher
prometheus
operator
k8s
kubekey
exporter
metrics