Skip to content

Commit 2a58d92

Browse files
committed
charts/opencloud/templates/onlyoffice/deployment.yaml: use safe rendering for booleans
1 parent d3760b0 commit 2a58d92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

charts/opencloud/templates/onlyoffice/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ spec:
2525
command: ["/bin/sh", "/entrypoint-override.sh"]
2626
env:
2727
- name: WOPI_ENABLED
28-
value: "{{ .Values.onlyoffice.wopi.enabled }}"
28+
value: {{ tpl (toString .Values.onlyoffice.wopi.enabled) . | quote }}
2929
- name: USE_UNAUTHORIZED_STORAGE
30-
value: "{{ .Values.onlyoffice.useUnauthorizedStorage }}"
30+
value: {{ tpl (toString .Values.onlyoffice.useUnauthorizedStorage) . | quote }}
3131
- name: DB_TYPE
3232
value: "{{ .Values.onlyoffice.config.coAuthoring.sql.type | default "postgres" }}"
3333
- name: DB_HOST

0 commit comments

Comments
 (0)