From b41202e19093325eec2284a3462829c34413d5c0 Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Tue, 21 Jan 2025 17:00:12 -0500 Subject: [PATCH] pathin --- eks_console_access.tf | 2 +- variables.tf | 15 --------------- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/eks_console_access.tf b/eks_console_access.tf index 9a06fa5..a065714 100644 --- a/eks_console_access.tf +++ b/eks_console_access.tf @@ -97,5 +97,5 @@ resource "helm_release" "console_access" { name = each.key namespace = "default" version = var.release_version - repository = "./${each.key}" + repository = "./${each.key}/" } diff --git a/variables.tf b/variables.tf index ac97721..4fad9b2 100644 --- a/variables.tf +++ b/variables.tf @@ -46,18 +46,3 @@ variable "release_version" { description = "The version of helm charts to use" type = string } - -# # helm add repo autoscaler "https://kubernetes.github.io/autoscaler" -# # helm search repo -l autoscaler/cluster-autoscaler -# variable "cluster_autoscaler_chart_version" { -# description = "The helm chart of the cluster-autoscaler most closely matching the Kuberentes version. Review output of `helm add repo autoscaler 'https://kubernetes.github.io/autoscaler'` (if the repo hasn't been added previously) and `helm search repo -l autoscaler/cluster-autoscaler`" -# type = string -# default = "9.37.0" -# } - -# # helm show values --version [cluster_autoscaler_chart_version] autoscaler/cluster-autoscaler | grep tag: -# variable "cluster_autoscaler_tag" { -# description = "Image tag of cluster-autoscaler associated with the cluster_autoscaler_chart_version helm chart. `helm show values --version [cluster_autoscaler_chart_version] autoscaler/cluster-autoscaler | grep tag:`" -# type = string -# default = "v1.30.0" -# }