pod 删除
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 删除的主要内容,如果未能解决你的问题,请参考以下文章