在EKS中具有节点的节点组

huangapple go评论55阅读模式
英文:

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'

huangapple
  • 本文由 发表于 2023年8月10日 16:43:29
  • 转载请务必保留本文链接:https://go.coder-hub.com/76874028.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定