|
resource "helm_release" "argocd" {
|
|
name = "argocd"
|
|
repository = "https://argoproj.github.io/argo-helm"
|
|
chart = "argo-cd"
|
|
namespace = "argocd"
|
|
create_namespace = true
|
|
|
|
set {
|
|
name = "server.service.type"
|
|
value = "LoadBalancer"
|
|
}
|
|
|
|
# Add other configuration options as needed
|
|
}
|
|
|