查询k8s中deployment中的所有
若pod有几十个,那查找对应的pod有些麻烦,简单的方法是用grep,这种方式不优雅,本文解决用k8s自带的命令查找的方法。
·
一、简介
若pod有几十个,那查找对应的pod有些麻烦,简单的方法是用grep,举例
kubectl get pods -n xxxxxx|grep nginx222
这种方式不优雅,本文解决用k8s自带的命令查找的方法
二、命令说明
deployments与pod的关系是:deployments----生成—》replicasets----生成—》pod
首先查看deployment
[root@edgenode-0 ~]# kubectl describe deploy nginx222 -n xxxxxx
Name: nginx222
Namespace: xxxxxx
CreationTimestamp: Wed, 19 May 2021 10:32:18 +0800
Labels: app=nginx222 #注意这里
Annotations: deployment.kubernetes.io/revision: 21
Selector: app=nginx222 #注意这里
Replicas: 2 desired | 2 updated | 2 total | 2 available | 0 unavailable #注意这里
StrategyType: RollingUpdate
其次查看一下lables
[root@edgenode-0 ~]# kubectl get pods --show-labels=true -n xxxxxx|grep nginx222 #显示lables
nginx222-111111111-hw5dg 1/1 Running 1 275d app=nginx222,pod-template-hash=111111111
nginx222-111111111-ksdpp 1/1 Running 1 241d app=nginx222,pod-template-hash=111111111
[root@edgenode-0 ~]#
最后用lables进行展示
[root@edgenode-0 ~]# kubectl get pods -n xxxxxx -l app=nginx222 #使用--selector或-l进行区分
NAME READY STATUS RESTARTS AGE LABELS
nginx222-111111111-hw5dg 1/1 Running 1 275d app=nginx222,pod-template-hash=111111111
nginx222-111111111-ksdpp 1/1 Running 1 241d app=nginx222,pod-template-hash=111111111
[root@edgenode-0 ~]#
附:kubectl get --help查看帮助,其中-o 是用于筛选显示哪些列的
版本
- 2023-05-18
更多推荐
已为社区贡献2条内容
所有评论(0)