Copy/paste.

This commit is contained in:
29 changed files with 2473 additions and 2 deletions

12
terraform/1-argocd.tf Normal file
View File

@@ -0,0 +1,12 @@
# helm install argocd -n argocd --create-namespace argo/argo-cd --version 3.35.4 -f terraform/values/argocd.yaml
resource "helm_release" "argocd" {
name = "argocd"
repository = "https://argoproj.github.io/argo-helm"
chart = "argo-cd"
namespace = "argocd"
create_namespace = true
version = "3.35.4"
values = [file("values/argocd.yaml")]
}