Skip to content

Commit

Permalink
remove the prefix from helm values
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarsilva948 committed May 30, 2024
1 parent 53e905e commit 9540cd3
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bootstrap/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ module "eks_blueprints_addons" {
wait = true
timeout = "600"
values = [
templatefile("${path.module}/values/control-plane-eks-argocd-stack.yaml", {
templatefile("${path.module}/values/argocd-stack.yaml", {
crossplane_aws_provider_enable = local.aws_provider.enable
crossplane_upjet_aws_provider_enable = local.upjet_aws_provider.enable
crossplane_kubernetes_provider_enable = local.kubernetes_provider.enable
Expand All @@ -172,7 +172,7 @@ module "eks_blueprints_addons" {
kube_prometheus_stack = {
wait = true
timeout = "600"
values = [file("${path.module}/values/control-plane-eks-prometheus-stack.yaml")]
values = [file("${path.module}/values/prometheus-stack.yaml")]
}

depends_on = [module.eks.eks_managed_node_groups]
Expand All @@ -192,7 +192,7 @@ module "crossplane" {
chart = "crossplane"
chart_version = "1.16.0"
repository = "https://charts.crossplane.io/stable/"
values = [file("${path.module}/values/control-plane-eks-crossplane-stack.yaml")]
values = [file("${path.module}/values/crossplane-stack.yaml")]

depends_on = [module.eks.eks_managed_node_groups]
}
Expand Down

0 comments on commit 9540cd3

Please sign in to comment.