From 8c215618a375a9478a912faf591fe152cf667f03 Mon Sep 17 00:00:00 2001 From: Colin Wilson Date: Wed, 30 Nov 2022 18:48:56 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=20update=20chart=20repo=20URL=20?= =?UTF-8?q?=E2=9A=A1=20update=20default=20chart=20to=2020.6.0=20(Traefik?= =?UTF-8?q?=20v2.9.5)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- chart.tf | 2 +- variables.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d783331..d2848fe 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ A Terraform module to provision [Traefik](https://traefik.io/traefik/) (v2.x) on | Name | Description | Type | Default | Required | |------|-------------|:----:|:-----:|:-----:| | namespace | Namespace to install traefik chart into (created if non-existent on target cluster) | string | `traefik` | no | -| traefik_chart_version | Version of Traefik chart to install | string | `10.24.0` | no | +| traefik_chart_version | Version of Traefik chart to install | string | `20.6.0` | no | | timeout_seconds | Helm chart deployment can sometimes take longer than the default 5 minutes. Set a custom timeout (secs) | number | `800` | no | | replica_count | Number of replica pods to create | number | `1` | no | | values_file | Name of the traefik helm chart values file to use | string | `values.yaml` | no | \ No newline at end of file diff --git a/chart.tf b/chart.tf index 20db76b..1a0cdef 100644 --- a/chart.tf +++ b/chart.tf @@ -3,7 +3,7 @@ resource "helm_release" "traefik" { namespace = var.namespace create_namespace = true name = "traefik" - repository = "https://helm.traefik.io/traefik" + repository = "https://traefik.github.io/charts" chart = "traefik" version = var.traefik_chart_version diff --git a/variables.tf b/variables.tf index 3e83c47..555b739 100644 --- a/variables.tf +++ b/variables.tf @@ -7,7 +7,7 @@ variable "namespace" { variable "traefik_chart_version" { description = "Version of Traefik chart to install" type = string - default = "10.24.0" # See https://artifacthub.io/packages/helm/traefik/traefik for latest version(s) + default = "20.6.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