Finished default app of apps installation

This commit is contained in:
Max Pfeiffer
2026-01-08 20:40:22 +01:00
parent cf62d5e544
commit ff9631d39a
8 changed files with 65 additions and 29 deletions

View File

@@ -1,8 +1,8 @@
resource "kubernetes_secret_v1" "argocd_app_of_apps_git_repo" {
count = var.install_argocd_app_of_apps_git_repo_secret ? 1 : 0
depends_on = [helm_release.argocd_app_of_apps]
depends_on = [kubernetes_namespace_v1.argocd]
metadata {
namespace = "argocd"
namespace = kubernetes_namespace_v1.argocd.id
name = "argocd-app-of-apps-git-repo"
labels = {
"argocd.argoproj.io/secret-type" = "repository"