From 33c99d2afd9e11fcd9fc0d8c3b2a648012c17043 Mon Sep 17 00:00:00 2001 From: Kalin Krustev Date: Fri, 10 Jan 2025 22:57:06 +0000 Subject: [PATCH] fix: remove unnecessary quotes in values.yaml for port configurations --- inter-scheme-proxy-adapter/values.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/inter-scheme-proxy-adapter/values.yaml b/inter-scheme-proxy-adapter/values.yaml index ffc342f8d..106102998 100644 --- a/inter-scheme-proxy-adapter/values.yaml +++ b/inter-scheme-proxy-adapter/values.yaml @@ -27,9 +27,9 @@ envFromSecrets: env: LOG_LEVEL: info - + METRICS_SERVER_LISTEN_PORT: 4004 - + # Port number that the inbound (FSPIOP API) HTTP servers A & B will listen on INBOUND_LISTEN_PORT_A: 4000 INBOUND_LISTEN_PORT_B: 4100 @@ -198,14 +198,14 @@ readinessProbe: enabled: true httpGet: path: /health - port: "{{ .Values.env.INBOUND_LISTEN_PORT_A }}" + port: {{ .Values.env.INBOUND_LISTEN_PORT_A }} initialDelaySeconds: 15 periodSeconds: 15 livenessProbe: enabled: true httpGet: path: /health - port: "{{ .Values.env.INBOUND_LISTEN_PORT_A }}" + port: {{ .Values.env.INBOUND_LISTEN_PORT_A }} initialDelaySeconds: 15 periodSeconds: 15 @@ -213,7 +213,7 @@ metrics: enabled: false config: timeout: 5000 - port: "{{ .Values.env.METRICS_SERVER_LISTEN_PORT }}" + port: {{ .Values.env.METRICS_SERVER_LISTEN_PORT }} prefix: moja_ defaultLabels: serviceName: inter-scheme-proxy-adapter