Added Helm chart for argocd app of apps, made the setup more configurable

This commit is contained in:
Max Pfeiffer
2026-01-08 17:52:50 +01:00
parent 8b774d6fb1
commit a24a2bd969
8 changed files with 184 additions and 23 deletions

View File

@@ -3,34 +3,14 @@ resource "helm_release" "argocd" {
namespace = "argocd"
create_namespace = true
chart = "argo-cd"
version = "9.1.0"
version = "9.2.4"
repository = "https://argoproj.github.io/argo-helm"
timeout = 120
set = [
{
name = "global.domain"
value = var.argocd_domain
},
{
name = "configs.params.server\\.insecure"
value = "true"
},
{
name = "server.ingress.enabled"
value = "true"
},
{
name = "server.ingress.ingressClassName"
value = "cilium"
},
{
name = "server.ingress.annotations.ingress\\.cilium\\.io/force-https"
value = "disabled"
},
]
set = local.argocd_values
}
resource "helm_release" "cilium_lb_config" {
count = var.install_cilium_lb_config ? 1 : 0
depends_on = [helm_release.argocd]
name = "cilium-lb-config"
chart = "${path.module}/helm_charts/cilium-lb-config"
@@ -46,3 +26,21 @@ resource "helm_release" "cilium_lb_config" {
},
]
}
resource "helm_release" "argocd_app_of_apps" {
count = var.install_argocd_app_of_apps ? 1 : 0
depends_on = [helm_release.argocd]
name = "cilium-lb-config"
chart = "${path.module}/helm_charts/cilium-lb-config"
timeout = 60
set = [
{
name = "source"
value = var.argocd_app_of_apps_source
},
{
name = "syncPolicy"
value = var.argocd_app_of_apps_sync_policy
},
]
}