Optimized virtual machine provisioning

This commit is contained in:
Max Pfeiffer
2024-11-10 19:01:12 +01:00
parent 0a410366ed
commit d43ddca54a
4 changed files with 18 additions and 64 deletions

View File

@@ -1,8 +0,0 @@
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
}

View File

@@ -1,3 +1,9 @@
resource "kubernetes_namespace" "ingress" {
metadata {
name = "ingress"
}
}
resource "kubernetes_namespace" "argocd" {
metadata {
name = "argocd"