Login
Remember
Register
Ask a Question
jsonpath example of getting just the level "status" for all nodes
0
votes
asked
Aug 7, 2023
in
Kubernetes K8s
by
john ganales
jsonpath example of getting just the level "status" for all nodes
jsonpath
example
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 7, 2023
by
john ganales
kubectl get nodes -o jsonpath='{items[*]status}' # quite a bit of data comes back
...