Skip to content

Commit

Permalink
Merge pull request #13 from aigisuk/develop
Browse files Browse the repository at this point in the history
⚡ update default chart to 21.1.0 (Traefik v2.9.7)
  • Loading branch information
colinwilson authored Mar 7, 2023
2 parents 407da63 + 21c7656 commit 4e6aa79
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
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 | `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 |
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 = "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
Expand Down

0 comments on commit 4e6aa79

Please sign in to comment.