Last active
November 24, 2024 14:48
-
-
Save chrisxaustin/d040734702a2d0062decc50c1d4c3772 to your computer and use it in GitHub Desktop.
list kubernetes nodes, family, and kubelet version
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kubectl get node -o json | jq -r '.items[] | .metadata.name + " - " + .metadata.labels.family + " - " + .status.nodeInfo.kubeletVersion' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment