From b05ffc0d656e505be5abbe34057a6f15c295d6ae Mon Sep 17 00:00:00 2001 From: valosnah Date: Wed, 15 Nov 2023 10:49:30 +0100 Subject: [PATCH] chore: add hosts for service-catalog and service-catalog-frontend --- helm-sources/templates/ingress.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/helm-sources/templates/ingress.yaml b/helm-sources/templates/ingress.yaml index 76a7252..58ddc25 100644 --- a/helm-sources/templates/ingress.yaml +++ b/helm-sources/templates/ingress.yaml @@ -490,3 +490,23 @@ spec: name: prod-nginx-ingress-nginx-controller port: number: 80 + - host: {{ required "Missing value HOSTNAME_SERVICE_CATALOG" .Values.HOSTNAME_SERVICE_CATALOG }} + http: + paths: + - path: /* + pathType: ImplementationSpecific + backend: + service: + name: prod-nginx-ingress-nginx-controller + port: + number: 80 + - host: {{ required "Missing value HOSTNAME_SERVICE_CATALOG_GUI" .Values.HOSTNAME_SERVICE_CATALOG_GUI }} + http: + paths: + - path: /* + pathType: ImplementationSpecific + backend: + service: + name: prod-nginx-ingress-nginx-controller + port: + number: 80