yevvzi 2020-04-23
本文介绍如何安装和升级使用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
###host字段指定授权使用该证书的etcd节点IP或子网列表,需要将etcd集群的3个节点都添加其中。cp etcd-v3.3.13-linux-amd64/etcd* /opt/k8s/bin/