Helm can't find chart

12/29/2018

I've published my chart to chartmuseum. And yes, I've ran "helm repo update".

$ helm search chartmuseum/
NAME                        CHART VERSION   APP VERSION DESCRIPTION            
chartmuseum/whoami          1-master                    A Helm chart for whoami
chartmuseum/whoami-master   0.0.1-SNAPSHOT              A Helm chart for whoami
chartmuseum/whoami-release  0.0.1-SNAPSHOT              A Helm chart for whoami

But when I try to find it...

$ helm install chartmuseum/whoami-release
Error: failed to download "chartmuseum/whoami-release" (hint: running `helm repo update` may help)

Anyone got a clue about what I do wrong?

-- user672009
kubernetes-helm

1 Answer

12/29/2018

Helm expects semantic versions in order to use the latest one by not explicitly specifying a version in the install command - https://github.com/helm/chartmuseum/issues/129

As you point out in the comments, it does retrieve if you specify the specific version

-- Ryan Dawson
Source: StackOverflow