Skip to content
2 changes: 1 addition & 1 deletion charts/das/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ maintainers:

type: application

version: 0.5.20
version: 0.5.21

appVersion: "v3.5.5-90ee45c"
10 changes: 3 additions & 7 deletions charts/das/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,8 @@ spec:
command: ["sleep"]
args: ["infinity"]
{{- else if .Values.commandOverride.enabled }}
{{- with .Values.commandOverride.command }}
command: {{- toYaml . | nindent 8}}
{{- end }}
{{- with .Values.commandOverride.args }}
args: {{- toYaml . | nindent 8 }}
{{- end }}
command: {{ .Values.commandOverride.command | toJson }}
args: {{ .Values.commandOverride.args | toJson }}
{{- else }}
command: [/usr/local/bin/daserver]
args:
Expand Down Expand Up @@ -189,12 +185,12 @@ spec:
{{- include "startupProbe" . | nindent 18 }}
{{- end }}
{{- end }}
{{- end }}
env:
{{- include "das.env" . | nindent 10 }}
{{- with .Values.extraEnv }}
{{- toYaml . | nindent 10 }}
{{- end }}
{{- end }}
lifecycle:
{{- include "das.lifecycle" . | nindent 12 }}
{{- with .Values.lifecycle }}
Expand Down
2 changes: 1 addition & 1 deletion charts/nitro/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ maintainers:

type: application

version: 0.6.31
version: 0.6.32

appVersion: "v3.5.5-90ee45c"
8 changes: 2 additions & 6 deletions charts/nitro/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,8 @@ spec:
command: ["sleep"]
args: ["infinity"]
{{- else if .Values.commandOverride.enabled }}
{{- with .Values.commandOverride.command }}
command: {{- toYaml . | nindent 8}}
{{- end }}
{{- with .Values.commandOverride.args }}
args: {{- toYaml . | nindent 8 }}
{{- end }}
command: {{ .Values.commandOverride.command | toJson }}
args: {{ .Values.commandOverride.args | toJson }}
{{- else }}
command: [/usr/local/bin/nitro]
args:
Expand Down
2 changes: 1 addition & 1 deletion charts/relay/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ maintainers:

type: application

version: 0.5.17
version: 0.5.18

appVersion: "v3.5.5-90ee45c"
8 changes: 2 additions & 6 deletions charts/relay/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,8 @@ spec:
command: ["sleep"]
args: ["infinity"]
{{- else if .Values.commandOverride.enabled }}
{{- with .Values.commandOverride.command }}
command: {{- toYaml . | nindent 8}}
{{- end }}
{{- with .Values.commandOverride.args }}
args: {{- toYaml . | nindent 8 }}
{{- end }}
command: {{ .Values.commandOverride.command | toJson }}
args: {{ .Values.commandOverride.args | toJson }}
{{- else }}
command: [/usr/local/bin/relay]
args:
Expand Down