...
Code Block |
---|
helm install nginx aliyuncs/nginx |
下载到本地repo模板化到本地
Code Block |
---|
helm fetch koderover-chart/zadig -v1.8.1 template polardbx-operator polardbx/polardbx-operator \ --namespace polardbx \ --set node.volumes.data=/polarx/data \ --set extension.config.images.store.galaxy.exporter=harbor.uenpay.com/base/mysqld-exporter:latest \ --version 1.6.2 > polardbx-operator.yaml |
repo导出helm仓库文件
Code Block |
---|
helm fetch polardbx/polardbx-operator |
Code Block |
---|
导出values.yaml文件,修改参数
helm show values vector-operator/vector-operator > values.yaml
生成完整的yaml文件
helm install vector-operator vector-operator/vector-operator -f values.yaml -n NAMESPACE --debug --dry-run
|