官网:https://github.com/helm/chartmuseum
https://helm.sh/zh/docs/topics/chart_repository/安装命令
下载:https://github.com/helm/chartmuseum
使用方法:https://chartmuseum.com/docs/#installation
chart推送插件下载
$ helm plugin install https://github.com/chartmuseum/helm-push Downloading and installing helm-push v0.10.1 ... https://github.com/chartmuseum/helm-push/releases/download/v0.10.1/helm-push_0.10.1_darwin_amd64.tar.gz Installed plugin: cm-push
安装ChartMuseum
使用etcd作为后端存储 nohup ./chartmuseum --debug --port=9999 --storage="etcd" --storage-etcd-cafile="/opt/etcd/ssl/ca.pem" --storage-etcd-certfile="/opt/etcd/ssl/etcd-server.pem" --storage-etcd-keyfile="/opt/etcd/ssl/etcd-server-key.pem" --storage-etcd-prefix="helm-repo" --storage-etcd-endpoint="http://192.168.43.130:2379" 2>&1 >nohup.out &本地 chartmuseum --debug --port=8080 \--storage="local" \--storage-local-rootdir="./chartstorage"