Commit 6daec69a by 据说甜蜜呢

添加文件

parent 15dc6525
## 为我们的项目创建chart目录
helm create AutoDevOpsPipeLinesCharts
## 安装
## 渲染模板(调试)
```shell
helm install --debug --dry-run /root/AutoDevOpsPipeLinesCharts \
--name=v1 \
--set environment.upper=Production \
--set environment.lower=production \
--set namespace=microservice-autodevopspipeline-v0 \
--set image.version=0.0.0 \
--set replicas=1
```
## 发布版本
```shell
helm install /root/AutoDevOpsPipeLinesCharts \
--name=geekbuying-light-v2 \
--set environment.upper=Production \
--set environment.lower=production \
--set namespace=geekbuying-light-v3 \
--set image.version=2.0.0
```
## 检视发布
helm get manifest [release name]
## 删除发布
helm delete [release name]
## 其他
helm ls
helm ls --deleted -d
helm del --purge $releaseName
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment