以rke 0.2.1版本为例
RKE通过更改系统镜像的镜像版本来支持版本升级
1、查看当前rke版本支持的 系统镜像
rke config --system-images --all
列表中可以看到当前rke 可以支持 k8s版本 v1.13.5
2、更新rke配置参数
nodes:
- address: 10.10.110.111
user: jyapp
role: [controlplane,worker,etcd]
- address: 10.10.110.112
user: jyapp
role: [controlplane,worker,etcd]
- address: 10.10.110.113
user: jyapp
role: [controlplane,worker,etcd]
system_images:
kubernetes: rancher/hyperkube:v1.13.5-rancher1 #k8s版本
services:
etcd:
backup_config:
interval_hours: 6 #etcd快照备份间隔 单位小时
retention: 24 #etcd快照备份时长, 单位小时 ,过期删除
3、查看rancher k8s版本号
注意:
1、如果当前rke版本不支持高版本的k8s版本,可以升级rke版本