From e43f6bd37f4c9ab79bdb008a25189b368bd428fb Mon Sep 17 00:00:00 2001 From: Mikel Sanchez Herrero Date: Thu, 18 May 2023 09:56:18 +0200 Subject: [PATCH] Fixed helm chart route routeName The helm chart has an issue, the helm chart is not able to create the route as it tries to get the portName from the service instead of the route. --- helm-charts/sonatype-nexus/templates/route.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm-charts/sonatype-nexus/templates/route.yaml b/helm-charts/sonatype-nexus/templates/route.yaml index cf76e5b..23bf862 100644 --- a/helm-charts/sonatype-nexus/templates/route.yaml +++ b/helm-charts/sonatype-nexus/templates/route.yaml @@ -11,7 +11,7 @@ metadata: spec: host: {{ .Values.route.path }} port: - targetPort: {{ .Values.service.portName }} + targetPort: {{ .Values.route.portName }} tls: insecureEdgeTerminationPolicy: Redirect termination: edge