• 安装升级rancher


    安装升级rancher

    sudo docker run -d --restart=unless-stopped -p 80:80 -p 443:443 --privileged rancher/rancher

    sudo docker run -d --restart=unless-stopped -p 54580:80 -p 54443:443 --privileged rancher/rancher
    
    • 1

    Installing/Upgrading Rancher

    This section provides an overview of the architecture options of installing Rancher, describing advantages of each option.

    Terminology

    In this section,

    • The Rancher server manages and provisions Kubernetes clusters. You can interact with downstream Kubernetes clusters through the Rancher server’s user interface. The Rancher management server can be installed on any Kubernetes cluster, including hosted clusters, such as Amazon EKS clusters.
    • RKE (Rancher Kubernetes Engine) is a certified Kubernetes distribution and CLI/library which creates and manages a Kubernetes cluster.
    • K3s (Lightweight Kubernetes) is also a fully compliant Kubernetes distribution. It is newer than RKE, easier to use, and more lightweight, with a binary size of less than 100 MB.
    • RKE2 is a fully conformant Kubernetes distribution that focuses on security and compliance within the U.S. Federal Government sector.

    Note the restrictedAdmin Helm chart option available for the Rancher Server . When this option is set to true, the initial Rancher user has restricted access to the local Kubernetes cluster to prevent privilege escalation. For more information, see the section about the restricted-admin role.

    Overview of Installation Options

    Rancher can be installed on these main architectures:

    High-availability Kubernetes Install with the Helm CLI

    We recommend using Helm, a Kubernetes package manager, to install Rancher on multiple nodes on a dedicated Kubernetes cluster. For RKE clusters, three nodes are required to achieve a high-availability cluster. For K3s clusters, only two nodes are required.

    Automated Quickstart to Deploy Rancher on Amazon EKS

    Rancher and Amazon Web Services collaborated on a quick start guide for deploying Rancher on an EKS Kubernetes cluster following AWS best practices. The deployment guide is here.

    Single-node Kubernetes Install

    Rancher can be installed on a single-node Kubernetes cluster. In this case, the Rancher server doesn’t have high availability, which is important for running Rancher in production.

    However, this option is useful if you want to save resources by using a single node in the short term, while preserving a high-availability migration path. In the future, you can add nodes to the cluster to get a high-availability Rancher server.

    Docker Install

    For test and demonstration purposes, Rancher can be installed with Docker on a single node. A local Kubernetes cluster is installed in the single Docker container, and Rancher is installed on the local cluster.

    The Rancher backup operator can be used to migrate Rancher from the single Docker container install to an installation on a high-availability Kubernetes cluster. For details, refer to the documentation on migrating Rancher to a new cluster.

    参考:

    https://github.com/rancher/rancher

    https://docs.ranchermanager.rancher.io/pages-for-subheaders/installation-and-upgrade

  • 相关阅读:
    【0基础百日刷题】洛谷刷题知识拾遗
    发布上线 | FOSS全闪对象存储 V1.5版本来啦
    【Linux】网络编程基础
    千呼万唤始出来,从源码到架构的Spring全系列笔记,已全部完毕
    送给处于瓶颈期的你!80后架构师结合项目实战,踏平你的大厂之路
    搭建ELK+Filebead+zookeeper+kafka实验
    武装你的WEBAPI-OData聚合查询
    智慧公厕建设的好处
    Vue.js入门教程(八)
    UE5安装visual studio integration和Cesium失败问题
  • 原文地址:https://blog.csdn.net/qq_44633541/article/details/127626358