Files
proxmox-tofu/kubernetes/helm.tf
2024-11-09 14:51:26 +01:00

8 lines
230 B
HCL

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
}