From 21c765656ca371f7e6fd6dbb32d9face558be1cf Mon Sep 17 00:00:00 2001 From: Colin Wilson Date: Tue, 7 Mar 2023 05:04:06 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=20update=20default=20chart=20to=2021.?= =?UTF-8?q?1.0=20(Traefik=20v2.9.7)=20=F0=9F=94=91=20update=20license=20?= =?UTF-8?q?=F0=9F=93=84=20update=20readme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- LICENSE | 2 +- README.md | 2 +- variables.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/LICENSE b/LICENSE index 3d6d070..5dd8c1d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 AIGIS UK (Lotus Labs Ltd) +Copyright (c) 2023 AIGIS UK (Lotus Labs Ltd) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index d2848fe..6100433 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 | `20.6.0` | no | +| traefik_chart_version | Version of Traefik chart to install | string | `21.1.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 555b739..3bd4a1d 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 = "20.6.0" # See https://artifacthub.io/packages/helm/traefik/traefik for latest version(s) + default = "21.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