Skip to content

Commit

Permalink
fix: remove unnecessary quotes in values.yaml for port configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
kalinkrustev committed Jan 10, 2025
1 parent 380699c commit 33c99d2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions inter-scheme-proxy-adapter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -198,22 +198,22 @@ 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

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
Expand Down

0 comments on commit 33c99d2

Please sign in to comment.