Skip to content

Commit

Permalink
Split args to array
Browse files Browse the repository at this point in the history
  • Loading branch information
Elbandi committed Apr 16, 2024
1 parent ecbd5c6 commit 3d3fab3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion helm-charts/templates/hbbr-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ spec:
{{- with .Values.hbbr.extraArgs }}
{{- toYaml . | nindent 12 }}
{{- else}}
- "-k _"
- "-k"
- "_"
{{- end }}
ports:
- name: hbbr-port
Expand Down
6 changes: 4 additions & 2 deletions helm-charts/templates/hbbs-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,10 @@ spec:
{{- with .Values.hbbs.extraArgs }}
{{- toYaml . | nindent 12 }}
{{- else}}
- "-r $(RELAY)"
- "-k _"
- "-r"
- "$(RELAY)"
- "-k"
- "_"
{{- end }}
{{- if .Values.hbbs.relay }}
env:
Expand Down

0 comments on commit 3d3fab3

Please sign in to comment.