From 5421e3ba1ca16a6d7e93233acab20e85d502be28 Mon Sep 17 00:00:00 2001 From: Colin Wilson Date: Tue, 15 Mar 2022 13:57:40 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=20update=20default=20chart=20version?= =?UTF-8?q?=20to=2010.15.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4b8069f..d77ba5a 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.14.2` | no | +| traefik_chart_version | Version of Traefik chart to install | string | `10.15.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/variables.tf b/variables.tf index cafdd18..df1b644 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.14.2" # See https://artifacthub.io/packages/helm/traefik/traefik for latest version(s) + default = "10.15.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