Skip to content

Commit

Permalink
Merge pull request #6 from aigisuk/develop
Browse files Browse the repository at this point in the history
⚡ update default chart version to 10.14.2
  • Loading branch information
colinwilson authored Feb 22, 2022
2 parents ca458ba + b9e32f7 commit 49e6d95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 49e6d95

Please sign in to comment.