Search code examples
kubernetes-helm

Output of "helm list --all" is empty


I have deployed jupyterhub on my GKE cluster using helm. However, when I run helm list --all (or helm list --failed etc) I see no output.

I can confirm that tiller is running in my cluster:

$ helm version
Client: &version.Version{SemVer:"v2.11.0", GitCommit:"2e55dbe1fdb5fdb96b75ff144a339489417b146b", GitTreeState:"clean"}
Server: &version.Version{SemVer:"v2.11.0", GitCommit:"2e55dbe1fdb5fdb96b75ff144a339489417b146b", GitTreeState:"clean"}

And I can see the tiller pod:

$ kubectl get pods -n kube-system | grep tiller
tiller-deploy-778f674bf5-5jksm                                   1/1     Running   0          132d

I can also see that my deployment of jupyterhub is running using kubectl get pods -n jhub.

How I can I determine why the output of helm list is empty?


Solution

  • I had same issue where helm list was showing empty output.

    In case if anyone lands on this page looking for solution, please check below. source (similar) : https://github.com/helm/helm/issues/7146

    In short : Issue here we need to use namespaces when we do listing. or --all-namespace would help as well.

    helm list --all-namespaces