Merge pull request #134779 from joshjms/bump-etcd-v3.5.24

etcd: Bump supported etcd version to v3.5.24 for release v1.32, v1.33, and v1.34
This commit is contained in:
Kubernetes Prow Robot
2025-10-22 10:32:48 -07:00
committed by GitHub

View File

@@ -323,7 +323,7 @@ const (
KubeletHealthzPort = 10248
// MinExternalEtcdVersion indicates minimum external etcd version which kubeadm supports
MinExternalEtcdVersion = "3.5.23-0"
MinExternalEtcdVersion = "3.5.24-0"
// DefaultEtcdVersion indicates the default etcd version that kubeadm uses
DefaultEtcdVersion = "3.6.5-0"
@@ -501,9 +501,9 @@ var (
// - MinExternalEtcdVersion: with the minimum etcd version from this map.
// - DefaultEtcdVersion: with etcd version used for the current k8s release.
SupportedEtcdVersion = map[uint8]string{
32: "3.5.23-0",
33: "3.5.23-0",
34: "3.5.23-0",
32: "3.5.24-0",
33: "3.5.24-0",
34: "3.5.24-0",
35: "3.6.5-0",
}