How to download chart package from Helm ChartMuseum?

12/9/2019

I feel I have overseen something but I'm unable to find the appropriate section on https://github.com/helm/chartmuseum

How can I download helm chart package (.tgz) from Helm ChartMuseum (using curl, wget or any other cli)?

Helm must use that API to download requirements, but somehow I can't find the information in the ChartMuseum readme...

-- 9ilsdx 9rvj 0lo
kubernetes-helm

2 Answers

1/8/2020

Using helm v3:

helm repo add stable https://kubernetes-charts.storage.googleapis.com/
helm repo update
helm pull stable/chartnuseum --untar # optionally untar
-- moazzem
Source: StackOverflow

12/12/2019

Get it with curl:

curl https://kubernetes-charts.storage.googleapis.com/chartmuseum-2.5.0.tgz --output chartmuseum-2.5.0.tgz

All the packages from stable repo are here:

https://kubernetes-charts.storage.googleapis.com/

The latest version of chartmuseum to date is here:

https://kubernetes-charts.storage.googleapis.com/chartmuseum-2.5.0.tgz

The helm chart of chart museum on GitHub:

https://github.com/helm/charts/tree/master/stable/chartmuseum

-- Dennis Meissel
Source: StackOverflow