kubeadm: update supported etcd version list for 1.32

Signed-off-by: SataQiu <shidaqiu2018@gmail.com>
This commit is contained in:
SataQiu 2024-08-15 18:23:59 +08:00
parent 7df2b05e77
commit d8b3ada1c1
2 changed files with 2 additions and 1 deletions

View File

@ -484,6 +484,7 @@ var (
29: "3.5.15-0",
30: "3.5.15-0",
31: "3.5.15-0",
32: "3.5.15-0",
}
// KubeadmCertsClusterRoleName sets the name for the ClusterRole that allows

View File

@ -99,7 +99,7 @@ func TestGetStaticPodFilepath(t *testing.T) {
}
func TestEtcdSupportedVersionLength(t *testing.T) {
const max = 3
const max = 4
if len(SupportedEtcdVersion) > max {
t.Fatalf("SupportedEtcdVersion must not include more than %d versions", max)
}