0 votes
in Kubernetes K8s by
jsonpath example of getting just the level "status" for all nodes

1 Answer

0 votes
by

kubectl get nodes -o jsonpath='{items[*]status}'   # quite a bit of data comes back

...