Skip to content

Commit d695115

Browse files
authored
Fix: constant etcd_supported_version to dynamic (#12499)
Signed-off-by: ChengHao Yang <[email protected]>
1 parent 9a09ac5 commit d695115

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Note:
112112

113113
- Core
114114
- [kubernetes](https://github.com/kubernetes/kubernetes) 1.32.8
115-
- [etcd](https://github.com/etcd-io/etcd) 3.5.16
115+
- [etcd](https://github.com/etcd-io/etcd) 3.5.22
116116
- [docker](https://www.docker.com/) 28.0
117117
- [containerd](https://containerd.io/) 2.0.6
118118
- [cri-o](http://cri-o.io/) 1.32.0 (experimental: see [CRI-O Note](docs/CRI/cri-o.md). Only on fedora, ubuntu and centos based OS)

roles/kubespray_defaults/defaults/main/download.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ pod_infra_supported_versions:
136136
pod_infra_version: "{{ pod_infra_supported_versions[kube_major_version] }}"
137137

138138
etcd_supported_versions:
139-
'1.32': 3.5.16
140-
'1.31': 3.5.16
141-
'1.30': 3.5.16
139+
'1.32': "{{ (etcd_binary_checksums['amd64'].keys() | select('version', '3.6', '<'))[0] }}"
140+
'1.31': "{{ (etcd_binary_checksums['amd64'].keys() | select('version', '3.6', '<'))[0] }}"
141+
'1.30': "{{ (etcd_binary_checksums['amd64'].keys() | select('version', '3.6', '<'))[0] }}"
142142
etcd_version: "{{ etcd_supported_versions[kube_major_version] }}"
143143

144144
crictl_supported_versions:

0 commit comments

Comments
 (0)