add debug option in authentik helm [ci skip]
This commit is contained in:
parent
14538a02c0
commit
7daa8304fa
2 changed files with 17 additions and 14 deletions
|
|
@ -22,9 +22,10 @@ resource "helm_release" "authentik" {
|
||||||
|
|
||||||
repository = "https://charts.goauthentik.io/"
|
repository = "https://charts.goauthentik.io/"
|
||||||
chart = "authentik"
|
chart = "authentik"
|
||||||
version = "2025.10.3"
|
# version = "2025.8.1"
|
||||||
atomic = true
|
version = "2025.10.3"
|
||||||
timeout = 6000
|
atomic = true
|
||||||
|
timeout = 6000
|
||||||
|
|
||||||
values = [templatefile("${path.module}/values.yaml", { postgres_password = var.postgres_password, secret_key = var.secret_key })]
|
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 {
|
rule {
|
||||||
host = "authentik.viktorbarzin.me"
|
host = "authentik.viktorbarzin.me"
|
||||||
http {
|
http {
|
||||||
path {
|
|
||||||
path = "/"
|
|
||||||
backend {
|
|
||||||
service {
|
|
||||||
name = "goauthentik-server"
|
|
||||||
port {
|
|
||||||
number = 80
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
path {
|
path {
|
||||||
path = "/outpost.goauthentik.io"
|
path = "/outpost.goauthentik.io"
|
||||||
path_type = "Prefix"
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
authentik:
|
authentik:
|
||||||
log_level: warning
|
log_level: warning
|
||||||
|
# log_level: trace
|
||||||
secret_key: "${secret_key}"
|
secret_key: "${secret_key}"
|
||||||
# This sends anonymous usage-data, stack traces on errors and
|
# This sends anonymous usage-data, stack traces on errors and
|
||||||
# performance data to authentik.error-reporting.a7k.io, and is fully opt-in
|
# performance data to authentik.error-reporting.a7k.io, and is fully opt-in
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue