From a5d5712e7a80494b7c0817e9aeaeeba7c8068ff3 Mon Sep 17 00:00:00 2001 From: Fabio Pinheiro Date: Wed, 22 Nov 2023 15:01:45 +0000 Subject: [PATCH] fix: correct endpoint for wss in deployment.yaml (#178) Signed-off-by: Fabio Pinheiro Signed-off-by: Shailesh Patil --- infrastructure/charts/mediator/templates/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/charts/mediator/templates/deployment.yaml b/infrastructure/charts/mediator/templates/deployment.yaml index 72718338..e2ca2835 100644 --- a/infrastructure/charts/mediator/templates/deployment.yaml +++ b/infrastructure/charts/mediator/templates/deployment.yaml @@ -40,4 +40,4 @@ spec: - name: MONGODB_DB_NAME value: "mediator" - name: SERVICE_ENDPOINTS - value: "https://{{ index .Values.ingress.applicationUrls 0 }};https://{{ index .Values.ingress.applicationUrls 0 }}/ws" + value: "https://{{ index .Values.ingress.applicationUrls 0 }};wss://{{ index .Values.ingress.applicationUrls 0 }}/ws"