Files
proxmox-tofu/kubernetes/helm_releases.tf
2025-09-18 19:26:00 +02:00

10 lines
232 B
HCL

resource "helm_release" "argocd" {
name = "argo-cd"
namespace = "argocd"
create_namespace = true
chart = "argo-cd"
version = "8.3.1"
repository = "https://argoproj.github.io/argo-helm"
timeout = 120
}