标签:dock add work test Plan pat star worker 直接
本文介绍如何安装和升级使用rancher搭建的k8s
rke 1.1.0 版新增了重大功能,无需停机即可更新 k8s 集群,详情参见:how-upgrades-work
在 rke release note 页面下载需要的版本
查看 rke 支持的 k8s 版本
./rke config --list-version --all
配置 cluster.yaml,指定 k8s 版本
kubernetes_version: "v1.17.4-rancher1-3"
运行命令,更新集群
./rke up --config cluster.yml
(RKE Intallation)[https://rancher.com/docs/rke/latest/en/installation/]
对于cluster.yml,最简单的输入下面的内容即可:
nodes:
- address: xxx
user: xxx
role: [controlplane,etcd]
ssh_key_path: ~/.ssh/id_rsa
- address: xxx
user: xxx
role: [worker]
ssh_key_path: ~/.ssh/id_rsa
# If set to true, RKE will not fail when unsupported Docker version are found
ignore_docker_version: true
rke version v0.3.0
./rke cert rotate --config cluster.yml
标签:dock add work test Plan pat star worker 直接
原文地址:https://www.cnblogs.com/windchen/p/12763943.html