Fix: constant etcd_supported_version to dynamic (#12499)

Signed-off-by: ChengHao Yang <17496418+tico88612@users.noreply.github.com>
This commit is contained in:
ChengHao Yang
2025-08-25 22:15:10 +08:00
committed by GitHub
parent 9a09ac5a40
commit d695115061
2 changed files with 4 additions and 4 deletions

View File

@@ -112,7 +112,7 @@ Note:
- Core
- [kubernetes](https://github.com/kubernetes/kubernetes) 1.32.8
- [etcd](https://github.com/etcd-io/etcd) 3.5.16
- [etcd](https://github.com/etcd-io/etcd) 3.5.22
- [docker](https://www.docker.com/) 28.0
- [containerd](https://containerd.io/) 2.0.6
- [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)

View File

@@ -136,9 +136,9 @@ pod_infra_supported_versions:
pod_infra_version: "{{ pod_infra_supported_versions[kube_major_version] }}"
etcd_supported_versions:
'1.32': 3.5.16
'1.31': 3.5.16
'1.30': 3.5.16
'1.32': "{{ (etcd_binary_checksums['amd64'].keys() | select('version', '3.6', '<'))[0] }}"
'1.31': "{{ (etcd_binary_checksums['amd64'].keys() | select('version', '3.6', '<'))[0] }}"
'1.30': "{{ (etcd_binary_checksums['amd64'].keys() | select('version', '3.6', '<'))[0] }}"
etcd_version: "{{ etcd_supported_versions[kube_major_version] }}"
crictl_supported_versions: