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/"
|
||||
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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue