The output format for the “get” command is specified by the -o option. In this situation, we use the broad output format which gives us more information about the pods such as the node on which the pod is operating and its IP address along with all these node names, nominated notes,...
[root@k8smaster ~]# kubectl get pods -o wide NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATESnginx-f89759699-nvjv6 1/1 Running 2 23d 10.244.1.4 k8snode1 <none> <none> 1. 影响调度的属性 总图 对node1节点 起标签名 kubectl label node node1 env_role dev 1. [root...
显示和查找资源 #Get commands with basic output#列出所有 namespace 中的所有 service$kubectl get services#列出所有 namespace 中的所有 pod$kubectl get pods --all-namespaces#列出所有 pod 并显示详细信息$kubectl get pods -o wide#列出指定 deployment$kubectl get deployment my-dep#列出该...
51CTO博客已为您找到关于kubectl get pods的相关内容,包含IT学习相关文档代码介绍、相关教程视频课程,以及kubectl get pods问答内容。更多kubectl get pods相关解答可以来51CTO博客参与分享和学习,帮助广大IT技术人实现成长和进步。
15 kubectl get pod -A 16 # 查看pod的详细信息,以yaml格式或json格式显示 17 kubectl get pods -o yaml 18 kubectl get pods -o json 19 20 # 查看pod的标签信息 21 kubectl get pod -A --show-labels 22 # 根据Selector(label query)来查询pod ...
# 根据重启次数排序列出 pod$ kubectl get pods --sort-by='.status.containerStatuses[0].restartCount'# 获取所有具有 app=cassandra 的 pod 中的 version 标签$ kubectl get pods --selector=app=cassandra rc -o\jsonpath='{.items[*].metadata.labels.version}'# 获取所有节点的 ExternalIP$...
# 根据重启次数排序列出 pod$ kubectlgetpods--sort-by='.status.containerStatuses[0].restartCount'# 获取所有具有 app=cassandra 的 pod 中的 version 标签$ kubectlgetpods--selector=app=cassandra rc-o \ jsonpath='{.items[*].metadata.labels.version}'# 获取所有节点的 ExternalIP$ kubectlgetnodes-o ...
kubectl get pod pod1 kubectl get pods pod1 kubectl get po pod1 NAME:指定资源的名称。名称区分大小写。如果省略名称,则显示所有资源的详细信息:kubectl get pods。 flags: 指定可选的参数。例如,可以使用-s或-server参数指定 Kubernetes API服务器的地址和端口。 注意事项说明: 从命令行指定的参数会覆盖默认...
6.2、查看所有命名空间运行的pod详细信息: kubectl get pods -A -o wide [root@master ~]# kubectl get pods -A -o wide NAMESPACE NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATESkube-flannel kube-flannel-ds-7clld 1/1 Running 0 5h39m 192.168.159.13 node02 <none> <none...
// Display the details of all the pods that are managed by the replication controller named <rc-name>. // Remember: Any pods that are created by the replication controller get prefixed with the name of the replication controller. $ kubectl describe pods <rc-name> ...