From a258c78c960d9c96de5cf41ac7349cf72d3ec067 Mon Sep 17 00:00:00 2001 From: Matteo Giaccone Date: Fri, 10 Oct 2025 11:14:09 +0200 Subject: [PATCH] Update cluster_autoscaler helm chart With EKS v1.33 we have seen an issue where cluster_autoscaler wasn't working properly. Upgrading the helm chart to the latest version fixed it and everything works fine. I guess the new helm chart should not break compatibility with older EKS versions while fixing the newer one. --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index d324bd30..cca0ed32 100644 --- a/main.tf +++ b/main.tf @@ -2073,7 +2073,7 @@ module "cluster_autoscaler" { namespace = local.cluster_autoscaler_namespace create_namespace = try(var.cluster_autoscaler.create_namespace, false) chart = try(var.cluster_autoscaler.chart, "cluster-autoscaler") - chart_version = try(var.cluster_autoscaler.chart_version, "9.35.0") + chart_version = try(var.cluster_autoscaler.chart_version, "9.50.1") repository = try(var.cluster_autoscaler.repository, "https://kubernetes.github.io/autoscaler") values = try(var.cluster_autoscaler.values, [])