Chartmuseum 基本操作
安装Helm Plugin
1
| helm plugin install https://github.com/chartmuseum/helm-push
|
添加Helm repo
1
| helm repo add {{ repo_name }} {{ url }} --username {{username}} --password {{password}}
|
Push charts
注: helm v3.7.0及以上版本使用 cm-push
, 其余版本使用push
1
| helm cm-push storagedb chartmuseum
|
使用自定义版本推送
1
| helm cm-push storagedb/ --version="1.2.3" chartmuseum
|
推送tgz包
1
| helm cm-push storagedb-1.2.3.tgz chartmuseum
|
强制推送
1
| helm cm-push --force storagedb-1.2.3.tgz chartmuseum
|
推送到指定URL
1
| helm cm-push storagedb http://localhost:8080
|