Copy/paste.
This commit is contained in:
12
terraform/1-argocd.tf
Normal file
12
terraform/1-argocd.tf
Normal 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")]
|
||||
}
|
||||
Reference in New Issue
Block a user