From c8ef023537910038ef05ce84337a35e429bfc931 Mon Sep 17 00:00:00 2001 From: Andreas Geissler Date: Thu, 4 Jan 2024 17:44:13 +0100 Subject: [PATCH] [HOLMES] Fix Ingress definition to support gateway-api Added missing "port" definition for Ingress Issue-ID: OOM-3260 Change-Id: I9a03b9c5d873bff45502b3e1619b90ee2d6faca4 Signed-off-by: Andreas Geissler --- kubernetes/holmes/components/holmes-rule-mgmt/values.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kubernetes/holmes/components/holmes-rule-mgmt/values.yaml b/kubernetes/holmes/components/holmes-rule-mgmt/values.yaml index 1b2724741a..bebd411ecb 100644 --- a/kubernetes/holmes/components/holmes-rule-mgmt/values.yaml +++ b/kubernetes/holmes/components/holmes-rule-mgmt/values.yaml @@ -69,7 +69,7 @@ service: port: &svc_port 9101 nodePort: 92 - name: http-ui - port: 9104 + port: &ui_port 9104 nodePort: 93 annotations: msb.onap.org/service-info: | @@ -92,11 +92,11 @@ ingress: - baseaddr: "holmes-rule-mgmt" name: "holmes-rule-mgmt" path: "/api/holmes-rule-mgmt/v1" - plain_port: 9101 + port: *svc_port - baseaddr: "holmes-rule-mgmt-ui" name: "holmes-rule-mgmt" path: "/iui/holmes" - plain_port: 9104 + port: *ui_port config: ssl: "redirect" -- 2.16.6