Skip to content

Commit

Permalink
Set up traefik explicit version (#269)
Browse files Browse the repository at this point in the history
Add explicit default traefik helm chart version to 26.0.0
Upgrade cert-manager to 1.14.4
  • Loading branch information
trottomv authored Mar 12, 2024
1 parent 4a939af commit e88e149
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ resource "helm_release" "traefik" {
chart = "traefik"
namespace = "traefik"
create_namespace = true
repository = "https://helm.traefik.io/traefik"
repository = "https://traefik.github.io/charts"
timeout = 900
version = var.traefik_helm_chart_version

values = [
file("${path.module}/values.yaml"),
Expand All @@ -43,7 +44,7 @@ resource "helm_release" "cert_manager" {
namespace = "cert-manager"
create_namespace = true
repository = "https://charts.jetstack.io"
version = "1.7.2"
version = "1.14.4"

set {
name = "installCRDs"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,9 @@ variable "load_balancer_annotations" {
type = map(string)
default = {}
}

variable "traefik_helm_chart_version" {
description = "The helm chart Traefik version https://github.com/traefik/traefik-helm-chart/releases."
type = string
default = "26.0.0"
}

0 comments on commit e88e149

Please sign in to comment.