From 67dd7c966aba3e2c09e505d3d67970d849233c1b Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Sun, 4 Jan 2026 02:15:51 +0900 Subject: [PATCH] FEAT(umami): add /api/send to public ingress - Add /api/send path to public ingress routes - Allow tracking data submission without auth --- umami/ingress.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/umami/ingress.yaml b/umami/ingress.yaml index 6f175da..1fa536e 100644 --- a/umami/ingress.yaml +++ b/umami/ingress.yaml @@ -64,6 +64,14 @@ spec: name: umami port: number: 3000 + # Tracking API (required for script.js to send data) + - path: /api/send + pathType: Exact + backend: + service: + name: umami + port: + number: 3000 --- # Protected Ingress - Dashboard (Authelia SSO required) apiVersion: networking.k8s.io/v1