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

View File

@@ -3,3 +3,15 @@ resource "kubernetes_namespace" "argocd" {
name = "argocd"
}
}
resource "kubernetes_namespace" "applications" {
metadata {
name = "applications"
}
}
resource "kubernetes_namespace" "persistence" {
metadata {
name = "persistence"
}
}