Added first kubernetes resources, removed clutter

This commit is contained in:
Max Pfeiffer
2025-09-18 19:01:32 +02:00
parent 644bb6af90
commit 6db6a6b960
6 changed files with 28 additions and 41 deletions

View File

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