From b9e32f79951d3a5ff5588504efdde07455fe70a0 Mon Sep 17 00:00:00 2001 From: Colin Wilson Date: Tue, 22 Feb 2022 13:10:51 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=20update=20default=20chart=20version?= =?UTF-8?q?=20to=2010.14.2=20=F0=9F=93=84=20update=20readme?= 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 25043d0..4b8069f 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.0` | no | +| traefik_chart_version | Version of Traefik chart to install | string | `10.14.2` | 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 2fb8430..cafdd18 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.0" # See https://artifacthub.io/packages/helm/traefik/traefik for latest version(s) + default = "10.14.2" # See https://artifacthub.io/packages/helm/traefik/traefik for latest version(s) } # Helm chart deployment can sometimes take longer than the default 5 minutes