[ci skip] Fix grampsweb ingress: set service_name to match backend service

The ingress_factory defaults service_name to name, so it was routing
to a non-existent "family" service instead of "grampsweb".
This commit is contained in:
Viktor Barzin 2026-02-08 02:23:42 +00:00
parent 87f851c20e
commit 74cc37a3c2
No known key found for this signature in database
GPG key ID: 0EB088298288D958

View file

@ -261,6 +261,7 @@ module "ingress" {
source = "../ingress_factory"
namespace = kubernetes_namespace.grampsweb.metadata[0].name
name = "family"
service_name = "grampsweb"
tls_secret_name = var.tls_secret_name
max_body_size = "500m"
}