From 853aba86bd144b3462947f02ce83513569cd67af Mon Sep 17 00:00:00 2001 From: Darrell Pappa Date: Wed, 20 Dec 2023 15:45:41 -0500 Subject: [PATCH] feat(cluster_autoscaler): removed old k8s versions, added new ones (#120) * Update cluster_autoscaler.tf * feat: removed old k8s versions, added new ones. --------- Co-authored-by: Benjamin Nelson --- cluster_autoscaler.tf | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/cluster_autoscaler.tf b/cluster_autoscaler.tf index e473d02..429a0e5 100644 --- a/cluster_autoscaler.tf +++ b/cluster_autoscaler.tf @@ -117,14 +117,15 @@ moved { # https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#what-are-the-parameters-to-ca ############ +# It's recommended to deploy the version matching the control plane +# https://github.com/kubernetes/autoscaler/tree/master/cluster-autoscaler#releases locals { k8s_to_autoscaler_version = { - "1.18" = "v1.18.3", - "1.19" = "v1.19.2", - "1.20" = "v1.20.1", - "1.21" = "v1.21.1", - "1.22" = "v1.22.1", - "1.23" = "v1.23.0" + "1.24" = "v1.24.3", + "1.25" = "v1.25.0", + "1.26" = "v1.26.1", + "1.27" = "v1.27.0", + "1.28" = "v1.28.0" } }