一、安装helm工具
官方文档:
https://helm.sh/zh/docs/intro/install/
安装rancher之前还需要安装helm工具
curl https://cdn.jsdelivr.net/gh/helm/helm@main/scripts/get-helm-3 | bash
国内可能会下载失败,可以手动安装
华为镜像站
https://repo.huaweicloud.com/helm/
wget https://repo.huaweicloud.com/helm/v3.9.4/helm-v3.9.4-linux-amd64.tar.gz
tar -zxvf helm-v3.9.4-linux-amd64.tar.gz
cp linux-amd64/helm /usr/local/bin/helm
chmod +x /usr/local/bin/helm
执行helm查看是否安装成功
二、安装
添加rancher的国内的安装模块,并更新helm
helm repo add rancher-stable http://rancher-mirror.oss-cn-beijing.aliyuncs.com/server-charts/stable
helm repo update
三、执行helm安装rancher命令
helm install rancher rancher-stable/rancher --namespace cattle-system --set hostname=rancher.auwink.com --set ingress.tls.source=secret --set privateCA=true
验证rancher是否安装成功
未完,持续更新中。。。
参考文章
https://www.cnblogs.com/zhouzhifei/p/13683466.html