Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to download chart package from Helm ChartMuseum?

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...

like image 794
9ilsdx 9rvj 0lo Avatar asked Dec 09 '19 16:12

9ilsdx 9rvj 0lo


People also ask

What command is used to download a helm chart from repository?

After you've updated the repository, they can use the helm repo update command to get the latest chart information. Under the hood, the helm repo add and helm repo update commands are fetching the index. yaml file and storing them in the $XDG_CACHE_HOME/helm/repository/cache/ directory.

What is ChartMuseum helm?

ChartMuseum is an open-source Helm Chart Repository written in Go (Golang) with support for cloud storage backends, including Google Cloud Storage, Amazon S3, Microsoft Azure Blob Storage, Alibaba Cloud OSS Storage, and Openstack Object Storage.


Video Answer


1 Answers

Using helm v3:

helm repo add stable https://kubernetes-charts.storage.googleapis.com/
helm repo update
helm pull stable/chartmuseum --untar # optionally untar
like image 82
Moazzem Hossen Avatar answered Oct 17 '22 09:10

Moazzem Hossen