When this command is executed, we can easily see the list of all pods along with their status and IP address. As seen in the previous command, we use the –– template option which allows us to specify a template that can be used to format the output of the “kubectl get pod”. Thi...
#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#列出该 namespace 中的...
# Get commands with basicoutput# 列出所有 namespace 中的所有 service$ kubectl get services# 列出所有 namespace 中的所有 pod$ kubectl get pods--all-namespaces# 列出所有 pod 并显示详细信息$ kubectl get pods -o wide# 列出指定 deployment$ kubectl get deployment my-dep# 列出该 namespace 中的所...
[root@master ~]# kubectl get pods --show-labels -ANAMESPACE NAME READY STATUS RESTARTS AGE LABELSkube-flannel kube-flannel-ds-7clld 1/1 Running 0 5h51m app=flannel,controller-revision-hash=5b775b5b5c,pod-template-generation=1,tier=nodekube-flannel kube-flannel-ds-psgvb 1/1 Running 0 ...
# 获取所有具有 app=cassandra 的 pod 中的 version 标签$ kubectl get pods --selector=app=cassandra rc -o \jsonpath='{.items[*].metadata.labels.version}' # 获取所有节点的 ExternalIP$ kubectl get nodes -o jsonpath='{.items[*].status.add...
# 根据重启次数排序列出 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 pods --selector=app=cassandra rc -o \ jsonpath='{.items[*].metadata.labels.version}' # 获取所有节点的 ExternalIP $ kubectl get nodes -o jsonpath='{.items[*].status.addresses[?(@.type=="ExternalIP")].address}'
[root@master ~]# kubectl get pods -o wide NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE nginx-7697996758-7ffmp 1/1 Running 0 97s 172.17.41.2 14.0.0.55 <none> nginx-7697996758-f254k 1/1 Running 0 97s 172.17.41.3 14.0.0.55 <none> ...
执行以下命令,查看所有default命名空间里正在运行的容器。 kubectl get pods 预期输出: NAME READY STATUS RESTARTS AGE nginx-2721357637-d*** 1/1 Running 1 9h使用镜像密钥创建应用 容器服务Kubernetes集群支持通过Web界面使用镜像密钥,包括新建镜像密钥和使用已有镜像密钥。 您...
// 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> ...