From e2fb17ecddbd2ccf1c5e9485227bd1530a3c38a8 Mon Sep 17 00:00:00 2001 From: Karim Naufal Date: Mon, 23 Sep 2024 03:01:36 +0200 Subject: [PATCH] switched the autoscaler image to hetzner's own --- variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/variables.tf b/variables.tf index 671c5228..d81191f7 100644 --- a/variables.tf +++ b/variables.tf @@ -264,13 +264,13 @@ variable "agent_nodepools" { variable "cluster_autoscaler_image" { type = string - default = "registry.k8s.io/autoscaling/cluster-autoscaler" + default = "docker.io/hetznercloud/cluster-autoscaler" description = "Image of Kubernetes Cluster Autoscaler for Hetzner Cloud to be used." } variable "cluster_autoscaler_version" { type = string - default = "v1.30.1" + default = "v1.31.0-hcloud1" description = "Version of Kubernetes Cluster Autoscaler for Hetzner Cloud. Should be aligned with Kubernetes version" }