helm常用操作
helm install
-
正常安装根据已有的chart
helm install consul hashicorp/consul --set global.name=consul --create-namespace --namespace consul
-
根据已有的chart.tgz
helm install consul ./consul.tgz
-
根据已有的chart 目录进行安装
helm install consul ./consul --namespace prod --values /root/prod-consul.yaml
- 根据已知的url进行安装
helm install consul https://example.com/charts/consul-1.2.3.tgz
-
根据已知的repo chart的地址进行安装
helm install --repo https://example.com/charts/consul-1.2.3.tgz consul-自定义名字 consul