首页 > 其他分享 >k3s部署rancher ui面板

k3s部署rancher ui面板

时间:2022-09-27 11:12:53浏览次数:107  
标签:k3s com repo helm ui https rancher 安装

安装文档
https://docs.ranchermanager.rancher.io/zh/pages-for-subheaders/install-upgrade-on-a-kubernetes-cluster

一、安装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

标签:k3s,com,repo,helm,ui,https,rancher,安装
From: https://www.cnblogs.com/sstu/p/16733704.html

相关文章

  • django项目 models新增class :TypeError: __init__() missing 1 required positional a
    File"D:\boke\boo\models.py",line22,inUserInfoblog=models.OneToOneField(to="Blog",to_field="nid",null=True)TypeError:__init__()missing1require......
  • Ableton Live 11 Suite:强大的音乐创作软件
    AbletonLive11Suite是由来自国外Ableton公司的一款旗舰级音乐创作软件!新发布的Live11添加了许多要求很高的功能,例如优雅的编曲系统和对MPE的支持,还有新设备以及现......
  • k3s部署kube-explorer面板
    书接上文,使用kube-explorer做界面管理工具一、项目地址https://github.com/cnrancher/kube-explorer二、复制配置文件cp/etc/rancher/k3s/k3s.yaml/root/.kube/confi......
  • 一文入门Qt Quick
    以下内容为本人的著作,如需要转载,请声明原文链接微信公众号「englyf」https://www.cnblogs.com/englyf/p/16733091.html初识QtQuick很高兴可以来到这一章,终于可以开始......
  • k3s部署全过程
    #安装k3s博客##准备工作1.准备俩台可以相互访问的服务器2.需要先安装dockers3.以下教程将使用VsCode+ssh插件来进行插件图ssh连接到俩台服务器点击打开ssh操......
  • SAP UI5 sap.ui.layout.Grid 控件宽度百分比的设置原理
    在Chrome开发者工具里使用SAPUI5扩展Inspector修改Grid控件的defaultSpan属性,会触发如下的代码:我们通过调用栈,可以发现SAPUI5Grid相关的框架代码调用,确......
  • Java代码如何创建GUID字符串呢?
    参考文章:http://www.java265.com/JavaJingYan/202111/16360183221692.html随机字符串是我们日常开发中,经常使用的一种字符串,那么下文将讲述具有代表性的字符串GUIDGUID字......
  • SAP UI5 SimpleForm 控件实例的初始化调试
    simpleForm在XML视图里定义的editable属性:会触发SimpleForm.setEditable方法调用:同理,设置layout属性:这个layout是一个单独的实例:addAllToContent:把Si......
  • elementui重写高亮样式
    <stylescoped>/deep/.el-table__bodytr.current-row>td{background-color:red!important;cursor:pointer;} /deep/tr.el-table__row.current-r......
  • UI测试报告jenkens整合
    (一)在本地整合出报告1.在cmd分别安装pytest和allure-pytestpip3installpytestpipinstallallure-pytest需要allure结合pytest才可以生成很漂亮的测试报告2.进入需要......