Skip to content

Commit 2bf3458

Browse files
committed
Allow multiline support for custom startup command
1 parent ab9dd7c commit 2bf3458

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.diploi/helm/app.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,14 +113,16 @@ spec:
113113
command:
114114
- /bin/sh
115115
- -c
116-
- "{{ . }}"
116+
- |
117+
{{ . | nindent 14 }}
117118
{{- end }}
118119
{{- else }}
119120
{{- with .Values.containerCommands.productionStart }}
120121
command:
121122
- /bin/sh
122123
- -c
123-
- "{{ . }}"
124+
- |
125+
{{ . | nindent 14 }}
124126
{{- end }}
125127
{{- end }}
126128
env:

0 commit comments

Comments
 (0)