Added more namespace and installed argocd via helm

This commit is contained in:
Max Pfeiffer
2024-11-09 14:51:26 +01:00
parent c8df9ea935
commit ec311d6e52
4 changed files with 48 additions and 0 deletions

8
kubernetes/helm.tf Normal file
View File

@@ -0,0 +1,8 @@
resource "helm_release" "argocd" {
name = "argocd"
chart = "argo-cd"
repository = "https://argoproj.github.io/argo-helm"
version = "7.7.0"
timeout = "1500"
namespace = kubernetes_namespace.argocd.id
}