Skip to content

Commit 3d3fab3

Browse files
committed
Split args to array
1 parent ecbd5c6 commit 3d3fab3

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

helm-charts/templates/hbbr-deployment.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ spec:
4646
{{- with .Values.hbbr.extraArgs }}
4747
{{- toYaml . | nindent 12 }}
4848
{{- else}}
49-
- "-k _"
49+
- "-k"
50+
- "_"
5051
{{- end }}
5152
ports:
5253
- name: hbbr-port

helm-charts/templates/hbbs-deployment.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,10 @@ spec:
4646
{{- with .Values.hbbs.extraArgs }}
4747
{{- toYaml . | nindent 12 }}
4848
{{- else}}
49-
- "-r $(RELAY)"
50-
- "-k _"
49+
- "-r"
50+
- "$(RELAY)"
51+
- "-k"
52+
- "_"
5153
{{- end }}
5254
{{- if .Values.hbbs.relay }}
5355
env:

0 commit comments

Comments
 (0)