up traefik version

This commit is contained in:
2024-04-13 20:40:40 +02:00
parent 1e0382079f
commit 7ed9b159d9
2 changed files with 4 additions and 4 deletions

View File

@ -218,14 +218,14 @@ resource "kubernetes_namespace_v1" "traefik" {
resource "helm_release" "traefik" {
chart = "traefik"
version = "24.0.0"
version = "27.0.2"
repository = "https://traefik.github.io/charts"
name = "traefik"
namespace = kubernetes_namespace_v1.traefik.metadata[0].name
set {
name = "ports.web.redirectTo"
name = "ports.web.redirectTo.port"
value = "websecure"
}
@ -263,7 +263,7 @@ resource "helm_release" "traefik" {
{{< /highlight >}}
`ports.web.redirectTo` will redirect all HTTP traffic to HTTPS.
`ports.web.redirectTo.port` will redirect all HTTP traffic to HTTPS.
`forwardedHeaders` and `proxyProtocol` will allow Traefik to get real IP of clients.

View File

@ -359,7 +359,7 @@ resource "helm_release" "traefik" {
}
set {
name = "ports.ssh.expose"
name = "ports.ssh.expose.default"
value = "true"
}