英文:
Nodegroup with nodes in EKS
问题
我正在尝试获取分配给EKS中每个节点的节点组,但无法找到使用eksctl或kubectl完成此操作的任何命令。
我已尝试过:eksctl list-nodegroups、describe-nodegroups,但它们都没有给我节点和节点组的信息。在文档中,我找不到如何执行此操作的方法。
有没有办法可以获取这个信息?
英文:
I am trying to get nodegroups assigned to each of the nodes in EKS, but not able to find any command with eksctl or kubectl to get that done.
I have tried: eksctl list-nodegroups, describe-nodegroups but none of them give me the nodes along with nodegroups. Nowhere in doc I find how we can do that.
Is thr any way we can get this?
答案1
得分: 1
以下是翻译好的部分:
这个命令将为您提供节点和节点组的列表。
kubectl get nodes -o json | jq -r '.items[] | [.metadata.name, .metadata.labels."eks.amazonaws.com/nodegroup"] | @tsv' | column -t -s $'\t'
英文:
> ... want to list my nodes with nodegroups..either with eksctl or kubectl using some jq
This command will provide you the list of nodes and node group.
kubectl get nodes -o json | jq -r '.items[] | [.metadata.name, .metadata.labels."eks.amazonaws.com/nodegroup"] | @tsv' | column -t -s $'\t'
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论