温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

使用脚本在Linux服务器上自动安装Kubernetes的包管理器Helm

发布时间:2020-08-11 06:55:34 来源:ITPUB博客 阅读:142 作者:i042416 栏目:建站服务器

Helm之于Kubernetes好比yum之于Red Hat Enterprise Linux,或者apt-get之于Ubuntu。

Helm是由helm CLI和Tiller组成,是典型的Client/Server应用。helm运行于客户端,提供命令行界面;Tiller应用运行于Kubernetes内部。

使用脚本在Linux服务器上自动安装Kubernetes的包管理器Helm

在Jerry之前的文章 里曾经介绍过手动下载Helm安装包,解压后把执行文件拷贝到环境变量的做法。

其实还有另外一种全自动的做法,使用安装脚本自动安装。

1. 自动下载安装脚本

curl  https://raw.githubusercontent.com/helm/helm/master/scripts/get  > get_ helm.sh

使用脚本在Linux服务器上自动安装Kubernetes的包管理器Helm

打开脚本,可以看到helm安装的环境变量HELM_INSTALL_DIR为/usr/local/bin:

使用脚本在Linux服务器上自动安装Kubernetes的包管理器Helm

2. chmod 700 get_helm.sh

使用脚本在Linux服务器上自动安装Kubernetes的包管理器Helm

./get_helm.sh:

使用脚本在Linux服务器上自动安装Kubernetes的包管理器Helm

3. 执行helm init, 看到Happy Helming消息,说明安装成功。

使用脚本在Linux服务器上自动安装Kubernetes的包管理器Helm

Creating /root/.helm

Creating /root/.helm/repository

Creating /root/.helm/repository/cache

Creating /root/.helm/repository/local

Creating /root/.helm/plugins

Creating /root/.helm/starters

Creating /root/.helm/cache/archive

Creating /root/.helm/repository/repositories.yaml

Adding stable repo with URL:  https://kubernetes-charts.storage.googleapis.com

Adding local repo with URL:  http://127.0.0.1:8879/charts

$HELM_HOME has been configured at /root/.helm.

Tiller (the Helm server-side component) has been installed into your Kubernetes Cluster.

Please note: by default, Tiller is deployed with an insecure 'allow unauthenticated users' policy.

To prevent this, run  helm init  with the --tiller-tls-verify flag.

For more information on securing your installation see:  https://docs.helm.sh/using_helm/#securing-your-helm-installation

Happy Helming!

要获取更多Jerry的原创文章,请关注公众号"汪子熙":

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI