Merge pull request #126703 from SataQiu/kubeadm-etcd-1.32

kubeadm: update supported etcd version list for 1.32
This commit is contained in:
Kubernetes Prow Robot 2024-08-15 05:41:18 -07:00 committed by GitHub
commit ae7e6267e5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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)
}