Helm can't find chart

Viewed 22906

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?

1 Answers

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

Related