Merge pull request #12639 from Budibase/fix-args-command-helm-chart
Fix the command and args values in the Helm chart, I put them in the wrong place.
This commit is contained in:
commit
6e87a1e654
|
@ -227,6 +227,14 @@ spec:
|
||||||
resources:
|
resources:
|
||||||
{{- toYaml . | nindent 10 }}
|
{{- toYaml . | nindent 10 }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
{{ if .Values.services.apps.command }}
|
||||||
|
command:
|
||||||
|
{{- toYaml .Values.services.apps.command | nindent 10 }}
|
||||||
|
{{ end }}
|
||||||
|
{{ if .Values.services.apps.args }}
|
||||||
|
args:
|
||||||
|
{{- toYaml .Values.services.apps.args | nindent 10 }}
|
||||||
|
{{ end }}
|
||||||
{{- with .Values.affinity }}
|
{{- with .Values.affinity }}
|
||||||
affinity:
|
affinity:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
|
@ -244,12 +252,4 @@ spec:
|
||||||
{{ end }}
|
{{ end }}
|
||||||
restartPolicy: Always
|
restartPolicy: Always
|
||||||
serviceAccountName: ""
|
serviceAccountName: ""
|
||||||
{{ if .Values.services.apps.command }}
|
|
||||||
command:
|
|
||||||
{{- toYaml .Values.services.apps.command | nindent 8 }}
|
|
||||||
{{ end }}
|
|
||||||
{{ if .Values.services.apps.args }}
|
|
||||||
args:
|
|
||||||
{{- toYaml .Values.services.apps.args | nindent 8 }}
|
|
||||||
{{ end }}
|
|
||||||
status: {}
|
status: {}
|
||||||
|
|
|
@ -227,6 +227,13 @@ spec:
|
||||||
resources:
|
resources:
|
||||||
{{- toYaml . | nindent 10 }}
|
{{- toYaml . | nindent 10 }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
command:
|
||||||
|
{{- toYaml .Values.services.automationWorkers.command | nindent 10 }}
|
||||||
|
{{ end }}
|
||||||
|
{{ if .Values.services.automationWorkers.args }}
|
||||||
|
args:
|
||||||
|
{{- toYaml .Values.services.automationWorkers.args | nindent 10 }}
|
||||||
|
{{ end }}
|
||||||
{{- with .Values.affinity }}
|
{{- with .Values.affinity }}
|
||||||
affinity:
|
affinity:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
|
@ -245,12 +252,5 @@ spec:
|
||||||
restartPolicy: Always
|
restartPolicy: Always
|
||||||
serviceAccountName: ""
|
serviceAccountName: ""
|
||||||
{{ if .Values.services.automationWorkers.command }}}
|
{{ if .Values.services.automationWorkers.command }}}
|
||||||
command:
|
|
||||||
{{- toYaml .Values.services.automationWorkers.command | nindent 8 }}
|
|
||||||
{{ end }}
|
|
||||||
{{ if .Values.services.automationWorkers.args }}
|
|
||||||
args:
|
|
||||||
{{- toYaml .Values.services.automationWorkers.args | nindent 8 }}
|
|
||||||
{{ end }}
|
|
||||||
status: {}
|
status: {}
|
||||||
{{- end }}
|
{{- end }}
|
|
@ -213,6 +213,13 @@ spec:
|
||||||
resources:
|
resources:
|
||||||
{{- toYaml . | nindent 10 }}
|
{{- toYaml . | nindent 10 }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
command:
|
||||||
|
{{- toYaml .Values.services.worker.command | nindent 10 }}
|
||||||
|
{{ end }}
|
||||||
|
{{ if .Values.services.worker.args }}
|
||||||
|
args:
|
||||||
|
{{- toYaml .Values.services.worker.args | nindent 10 }}
|
||||||
|
{{ end }}
|
||||||
{{- with .Values.affinity }}
|
{{- with .Values.affinity }}
|
||||||
affinity:
|
affinity:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
|
@ -231,11 +238,4 @@ spec:
|
||||||
restartPolicy: Always
|
restartPolicy: Always
|
||||||
serviceAccountName: ""
|
serviceAccountName: ""
|
||||||
{{ if .Values.services.worker.command }}
|
{{ if .Values.services.worker.command }}
|
||||||
command:
|
|
||||||
{{- toYaml .Values.services.worker.command | nindent 8 }}
|
|
||||||
{{ end }}
|
|
||||||
{{ if .Values.services.worker.args }}
|
|
||||||
args:
|
|
||||||
{{- toYaml .Values.services.worker.args | nindent 8 }}
|
|
||||||
{{ end }}
|
|
||||||
status: {}
|
status: {}
|
||||||
|
|
Loading…
Reference in New Issue