add skew -2 version in SupportedEtcdVersion

Signed-off-by: Angelos Kolaitis <neoaggelos@gmail.com>
This commit is contained in:
Angelos Kolaitis
2025-12-03 11:58:12 +02:00
parent 76b76c2d52
commit 4a944d1a3f

View File

@@ -503,6 +503,7 @@ var (
// The maximum length of the map should be 2, as kubeadm supports a maximum skew of -1
// with the control plane version.
SupportedEtcdVersion = map[uint8]string{
uint8(getSkewedKubernetesVersion(-2).Minor()): "3.5.24-0",
uint8(getSkewedKubernetesVersion(-1).Minor()): "3.5.24-0",
uint8(getSkewedKubernetesVersion(0).Minor()): "3.6.5-0",
}