Skip to content

Commit 2d8139d

Browse files
committed
charts/opencloud/templates/opencloud/deployment.yaml: use safe rendering for booleans
1 parent 9e74a10 commit 2d8139d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

charts/opencloud/templates/opencloud/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ spec:
157157
value: "0.0.0.0:9142"
158158
# INSECURE: needed if OpenCloud is using self generated certificates
159159
- name: OC_INSECURE
160-
value: "{{ .Values.opencloud.insecure }}"
160+
value: {{ tpl (toString .Values.opencloud.insecure) . | quote }}
161161
# Basic auth (only needed when not using Keycloak)
162162
- name: PROXY_ENABLE_BASIC_AUTH
163163
value: {{ tpl (toString .Values.opencloud.enableBasicAuth) . | quote }}
@@ -192,7 +192,7 @@ spec:
192192
- name: NOTIFICATIONS_SMTP_PASSWORD
193193
value: "{{ .Values.opencloud.smtp.password }}"
194194
- name: NOTIFICATIONS_SMTP_INSECURE
195-
value: "{{ .Values.opencloud.smtp.insecure }}"
195+
value: {{ tpl (toString .Values.opencloud.smtp.insecure) . | quote }}
196196
- name: NOTIFICATIONS_SMTP_AUTHENTICATION
197197
value: "{{ .Values.opencloud.smtp.authentication }}"
198198
- name: NOTIFICATIONS_SMTP_ENCRYPTION

0 commit comments

Comments
 (0)