etcd: bump etcd to v3.5.24 for k8s v1.32, v1.33, v1.34

Signed-off-by: joshjms <joshjms1607@gmail.com>
This commit is contained in:
joshjms
2025-10-22 22:38:57 +08:00
parent 34f2a0f6cc
commit 3fbd1a1787

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",
}