From 3f516dc4d370497114c66618512d192c83e482a0 Mon Sep 17 00:00:00 2001 From: Sienna Meridian Satterwhite Date: Mon, 2 Mar 2026 18:33:34 +0000 Subject: [PATCH] fix(ingress): fix People backend service name; add find route The People backend service is named people-backend (not people) in the desk chart. Add a route for find-backend to front the future OpenSearch Dashboards service. --- base/ingress/pingora-config.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/base/ingress/pingora-config.yaml b/base/ingress/pingora-config.yaml index 47704b4..c343c4b 100644 --- a/base/ingress/pingora-config.yaml +++ b/base/ingress/pingora-config.yaml @@ -54,7 +54,11 @@ data: [[routes]] host_prefix = "people" - backend = "http://people.lasuite.svc.cluster.local:8000" + backend = "http://people-backend.lasuite.svc.cluster.local:8000" + + [[routes]] + host_prefix = "find" + backend = "http://find-backend.lasuite.svc.cluster.local:8000" [[routes]] host_prefix = "src"