From d25e509d471e0ef58da1a6b7691be0370197fcfa Mon Sep 17 00:00:00 2001 From: Andreas Geissler Date: Mon, 6 Feb 2023 11:36:13 +0100 Subject: [SO] MSB connection fixed in nonTLS setup In case of non-TLS setup the connection to the MSB (when MSB enabled) needs to use the port 80 and does not need a SSL configuration Issue-ID: OOM-3097 Signed-off-by: Andreas Geissler Change-Id: I2f3828249fcf7865c15eac9dd014d9c29e7b094e --- .../so-etsi-nfvo-ns-lcm/resources/config/overrides/override.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kubernetes/so/components/so-etsi-nfvo-ns-lcm/resources/config/overrides/override.yaml') diff --git a/kubernetes/so/components/so-etsi-nfvo-ns-lcm/resources/config/overrides/override.yaml b/kubernetes/so/components/so-etsi-nfvo-ns-lcm/resources/config/overrides/override.yaml index df47c0a5fd..cc668fbd70 100644 --- a/kubernetes/so/components/so-etsi-nfvo-ns-lcm/resources/config/overrides/override.yaml +++ b/kubernetes/so/components/so-etsi-nfvo-ns-lcm/resources/config/overrides/override.yaml @@ -63,14 +63,14 @@ etsi-catalog-manager: {{- if .Values.global.msbEnabled }} {{ if (include "common.needTLS" .) }} endpoint: https://msb-iag:443/api - {{ else }} - endpoint: http://msb-iag:443/api - {{ end }} http: client: ssl: trust-store: file:${TRUSTSTORE} trust-store-password: ${TRUSTSTORE_PASSWORD} + {{ else }} + endpoint: http://msb-iag:80/api + {{ end }} {{- else }} endpoint: http://modeling-etsicatalog.{{ include "common.namespace" . }}:8806/api {{- end }} -- cgit 1.2.3-korg