Skip to content

Instantly share code, notes, and snippets.

@chrisxaustin
Last active November 24, 2024 14:48
Show Gist options
  • Save chrisxaustin/d040734702a2d0062decc50c1d4c3772 to your computer and use it in GitHub Desktop.
Save chrisxaustin/d040734702a2d0062decc50c1d4c3772 to your computer and use it in GitHub Desktop.
list kubernetes nodes, family, and kubelet version
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