Login
Remember
Register
Ask a Question
jsonpath comamnd to get only statusnodeInfo of each node This is not really an interview question But, its goog to know this in case JSON PATH topic comes up
0
votes
asked
Aug 7, 2023
in
Kubernetes K8s
by
john ganales
jsonpath comamnd to get only statusnodeInfo of each node This is not really an interview question But, its goog to know this in case JSON PATH topic comes up
statusnodeinfo
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[*]statusnodeInfo}' # better, more managable amount of data
...