本文介绍了kubernetes 列出所有正在运行的 pod 名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在寻找列出所有 Pod 名称的选项

I looking for the option to list all pods name

没有awk(或cut)怎么办.现在我正在使用这个命令

How to do without awk (or cut). Now i'm using this command

kubectl get --no-headers=true pods -o name | awk -F "/" '{print $2}'

推荐答案

您可以使用 kubectl 中内置的 go 模板选项来格式化输出以仅显示每个 pod 的名称:

You can use the go templating option built into kubectl to format the output to just show the names for each pod:

kubectl get pods --template '{{range .items}}{{.metadata.name}}{{"
"}}{{end}}'

这篇关于kubernetes 列出所有正在运行的 pod 名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-01 13:32