[ci skip] add widgets for audiobookshelf, changedetection, prowlarr, headscale

Wire homepage_credentials through servarr parent stack for prowlarr.
Fix paperless-ngx widget to use internal service URL.
This commit is contained in:
Viktor Barzin 2026-03-07 17:42:05 +00:00
parent 1f1700c4ff
commit 10acdcd5a2
7 changed files with 40 additions and 5 deletions

View file

@ -3,6 +3,10 @@ variable "tls_secret_name" {
sensitive = true
}
variable "nfs_server" { type = string }
variable "homepage_credentials" {
type = map(any)
sensitive = true
}
resource "kubernetes_namespace" "changedetection" {
@ -167,5 +171,8 @@ module "ingress" {
"gethomepage.dev/icon" = "changedetection-io.png"
"gethomepage.dev/group" = "Automation"
"gethomepage.dev/pod-selector" = ""
"gethomepage.dev/widget.type" = "changedetectionio"
"gethomepage.dev/widget.url" = "http://changedetection.changedetection.svc.cluster.local:5000"
"gethomepage.dev/widget.key" = var.homepage_credentials["changedetection"]["api_key"]
}
}