From f2a4ddd0449c9e9ae4f6155472134c3c49f60423 Mon Sep 17 00:00:00 2001 From: maxim Date: Mon, 16 May 2022 15:13:05 +0600 Subject: [PATCH] bug: fix aws-cluster-autoscaler expander priorities configuration --- terraform/layer2-k8s/eks-cluster-autoscaler.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/layer2-k8s/eks-cluster-autoscaler.tf b/terraform/layer2-k8s/eks-cluster-autoscaler.tf index 27650f66..0b2f9aa9 100644 --- a/terraform/layer2-k8s/eks-cluster-autoscaler.tf +++ b/terraform/layer2-k8s/eks-cluster-autoscaler.tf @@ -24,9 +24,9 @@ extraArgs: expander: priority expanderPriorities: | 10: - - eks-${local.eks_cluster_id}-ondemand.* + - ${local.eks_cluster_id}-ondemand.* 50: - - eks-${local.eks_cluster_id}-spot.* + - ${local.eks_cluster_id}-spot.* serviceMonitor: enabled: true