pod 删除

2021/6/8 18:21:01

本文主要是介绍pod 删除,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

 

 

 

[root@cloud temperature_yaml]# kubectl get pod -o wide | grep temperature | wc -l
278
[root@cloud temperature_yaml]# kubectl get pod -o wide | grep temperature |  awk '{print $1}' | xargs kubectl delete pod

 

 

 

kubectl get pod -o wide | grep temperature |  awk '{print $1}' | xargs kubectl delete pod --force --grace-period=0

可以删掉

 

[root@cloud temperature_yaml]# kubectl get pod -o wide | grep temperature | wc -l
59
[root@cloud temperature_yaml]# kubectl get pod -o wide | grep temperature |  awk '{print $1}' | xargs kubectl delete pod --force --grace-period=0

 

从etcd中删除

 

[root@cloud temperature_yaml]# cat /etc/kubernetes/manifests/etcd.yaml | grep image
    image: k8s.gcr.io/etcd:3.4.3-0
    imagePullPolicy: IfNotPresent
[root@cloud temperature_yaml]# 

 

 

查看k8s的etcd pod中的数据

如何批量删除k8s中的deployment和pod



这篇关于pod 删除的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程