add debug option in authentik helm [ci skip]

This commit is contained in:
Viktor Barzin 2025-12-28 20:03:37 +00:00
parent 14538a02c0
commit 7daa8304fa
2 changed files with 17 additions and 14 deletions

View file

@ -22,9 +22,10 @@ resource "helm_release" "authentik" {
repository = "https://charts.goauthentik.io/"
chart = "authentik"
version = "2025.10.3"
atomic = true
timeout = 6000
# version = "2025.8.1"
version = "2025.10.3"
atomic = true
timeout = 6000
values = [templatefile("${path.module}/values.yaml", { postgres_password = var.postgres_password, secret_key = var.secret_key })]
}
@ -47,17 +48,6 @@ resource "kubernetes_ingress_v1" "authentik" {
rule {
host = "authentik.viktorbarzin.me"
http {
path {
path = "/"
backend {
service {
name = "goauthentik-server"
port {
number = 80
}
}
}
}
path {
path = "/outpost.goauthentik.io"
path_type = "Prefix"
@ -70,6 +60,18 @@ resource "kubernetes_ingress_v1" "authentik" {
}
}
}
path {
path = "/"
path_type = "Prefix"
backend {
service {
name = "goauthentik-server"
port {
number = 80
}
}
}
}
}
}
}

View file

@ -1,5 +1,6 @@
authentik:
log_level: warning
# log_level: trace
secret_key: "${secret_key}"
# This sends anonymous usage-data, stack traces on errors and
# performance data to authentik.error-reporting.a7k.io, and is fully opt-in