0 votes
in Kubernetes K8s by
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

1 Answer

0 votes
by

kubectl get nodes -o jsonpath='{items[*]statusnodeInfo}'   # better, more managable amount of data

...