helm常用操作

helm install

  1. 正常安装根据已有的chart

    helm install consul hashicorp/consul --set global.name=consul --create-namespace --namespace consul

  2. 根据已有的chart.tgz

    helm install consul ./consul.tgz

  3. 根据已有的chart 目录进行安装

    helm install consul ./consul --namespace prod --values /root/prod-consul.yaml

  4. 根据已知的url进行安装

    helm install consul https://example.com/charts/consul-1.2.3.tgz

  5. 根据已知的repo chart的地址进行安装

    helm install --repo  https://example.com/charts/consul-1.2.3.tgz consul-自定义名字   consul

posted @ 2022-04-07 17:11  MacoPlus  阅读(64)  评论(0编辑  收藏  举报