[kubernetes-users] Re: k8s api request to get all resources

2018-08-28 Thread Amatzia Brandwein
thats what i was trying to figure out. i was trying to get components data from a remote machine via restful api without using "kubectl" command and i thought there was an "all" option like in "kubectl" command but now i see its a bunch of requests and i will have to do the same and do multiple r

[kubernetes-users] Re: k8s api request to get all resources

2018-08-28 Thread tvansteenburgh
I don't think so. If you increase the logging level on kubectl like this: kubectl get all -v 6 you'll see that kubectl is itself making an API request for each resource type, and aggregating the results. On Monday, August 27, 2018 at 9:50:32 AM UTC-4, Amatzia Brandwein wrote: > > Hello Guys >