当前位置:   article > 正文

查询k8s中deployment中的所有_kubectl查看deployment 的所有pod

kubectl查看deployment 的所有pod

一、简介

若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
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

其次查看一下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 ~]# 
  • 1
  • 2
  • 3
  • 4

最后用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 ~]#
  • 1
  • 2
  • 3
  • 4
  • 5

附:kubectl get --help查看帮助,其中-o 是用于筛选显示哪些列的

版本

  • 2023-05-18
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/162062
推荐阅读
相关标签
  

闽ICP备14008679号