“Helm3”的版本间的差异
跳到导航
跳到搜索
(→helm3) |
(→helm3) |
||
第14行: | 第14行: | ||
# source <(helm completion bash) | # source <(helm completion bash) | ||
+ | </pre> | ||
+ | ==添加 Chart 仓库== | ||
+ | <pre> | ||
+ | 在 Helm 3.0 版本中,默认是不会添加 Chart 仓库,所以这里我们需要手动添加,下面是添加一些常用的 Charts 库,命令如下: | ||
+ | |||
+ | $ helm repo add elastic https://helm.elastic.co | ||
+ | $ helm repo add gitlab https://charts.gitlab.io | ||
+ | $ helm repo add harbor https://helm.goharbor.io | ||
+ | $ helm repo add bitnami https://charts.bitnami.com/bitnami | ||
+ | $ helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com | ||
+ | $ helm repo add stable https://kubernetes-charts.storage.googleapis.com | ||
+ | |||
+ | 增加完仓库后,需要执行更新命令,将仓库中的信息进行同步: | ||
+ | |||
+ | $ helm repo update | ||
+ | |||
+ | 注意:如果有的仓库不能正常解析,请更换 DNS 地址,在测试过程中,发现有的能正常解析,有的不能。如果还不行,就直接将域名和对应的地址写死在 Host 文件中 | ||
</pre> | </pre> | ||
=see also= | =see also= |
2020年3月11日 (三) 07:02的版本
Helm基础 姐妹篇这个是helm2
helm3
ins
wget -c https://get.helm.sh/helm-v3.0.3-linux-amd64.tar.gz tar xvf helm-v3.0.3-linux-amd64.tar.gz sudo mv linux-amd64/helm /usr/local/bin/helm 果想要更舒服一些,那么可以添加自动完成的代码: # source <(helm completion bash)
添加 Chart 仓库
在 Helm 3.0 版本中,默认是不会添加 Chart 仓库,所以这里我们需要手动添加,下面是添加一些常用的 Charts 库,命令如下: $ helm repo add elastic https://helm.elastic.co $ helm repo add gitlab https://charts.gitlab.io $ helm repo add harbor https://helm.goharbor.io $ helm repo add bitnami https://charts.bitnami.com/bitnami $ helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com $ helm repo add stable https://kubernetes-charts.storage.googleapis.com 增加完仓库后,需要执行更新命令,将仓库中的信息进行同步: $ helm repo update 注意:如果有的仓库不能正常解析,请更换 DNS 地址,在测试过程中,发现有的能正常解析,有的不能。如果还不行,就直接将域名和对应的地址写死在 Host 文件中