Add ArgoCD as an optional module

This commit is contained in:
2024-03-14 17:00:30 +01:00
parent 4f744da328
commit 19da08cb1a
11 changed files with 128 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
resource "helm_release" "traefik" {
namespace = "traefik-loadbalancer"
namespace = var.namespace
create_namespace = true
name = "traefik"
repository = "https://traefik.github.io/charts"

View File

@@ -9,13 +9,13 @@ variable "cluster_ocid" {
variable "namespace" {
description = "Namespace to install traefik chart into"
type = string
default = "traefik"
default = "traefik-loadbalancer"
}
variable "traefik_chart_version" {
description = "Version of Traefik chart to install"
type = string
default = "21.1.0" # See https://artifacthub.io/packages/helm/traefik/traefik for latest version(s)
default = "26.1.0" # See https://artifacthub.io/packages/helm/traefik/traefik for latest version(s)
}
# Helm chart deployment can sometimes take longer than the default 5 minutes