Kubeflow setup returns no resources found

9/4/2018

I am following the steps in the getting started guide for kubeflow and i got stuck at verify the setup works.

I managed to get this:-

$ kubectl get ns
NAME             STATUS    AGE
default          Active    2m
kube-public      Active    2m
kube-system      Active    2m
kubeflow-admin   Active    14s

but when i do

$ kubectl -n kubeflow get svc
No resources found.

I also got

$ kubectl -n kubeflow get pods
No resources found.

I repeated these both on my mac and my ubuntu VM, and both returned the same problem. Am i missing something here?

Thanks.

-- Chirrut Imwe
kubeflow
kubernetes
tensorflow

2 Answers

9/25/2018

The process of installing the Kubeflow services involves downloading the container images and therefore it takes time for the services to get up and running.

You can run the command periodically until they are up.

-- Abhishek Gupta
Source: StackOverflow

9/4/2018

Yes you're missing something here and that is to use the correct namespace. Use:

$ kubectl -n kubeflow-admin get all
-- Michael Hausenblas
Source: StackOverflow