jsonpathの練習として。どのNodeGroupにいくつNodeがあるか見たいときに。
kubectl get nodes -o jsonpath='{range .items[*]}{@.metadata.labels.nodegroup-name}{"\n"}{end}' | sort | uniq -c
22 nodegroup-foo
5 nodegroup-bar
参考: kubectlチートシート
Go to list of users who liked
More than 1 year has passed since last update.
jsonpathの練習として。どのNodeGroupにいくつNodeがあるか見たいときに。
kubectl get nodes -o jsonpath='{range .items[*]}{@.metadata.labels.nodegroup-name}{"\n"}{end}' | sort | uniq -c
22 nodegroup-foo
5 nodegroup-bar
参考: kubectlチートシート
Register as a new user and use Qiita more conveniently
Go to list of users who liked