File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,11 +30,11 @@ data:
3030{{- with .Values.storage.s3_endpoint }}
3131 S3_ENDPOINT : {{ . }}
3232{{- end }}
33- {{- if .Values.storage.s3_ssl }}
34- S3_SSL : " True"
35- {{- end }}
33+ S3_SSL : {{ .Values.storage.s3_ssl | quote }}
3634 S3_VERIFY_SSL : {{ .Values.storage.s3_verify_ssl | quote }}
37- S3_VERIFY_SSL_CERTIFICATE : {{ .Values.storage.s3_verify_ssl_certificate | quote }}
35+ {{- with .Values.storage.s3_verify_ssl_certificate }}
36+ S3_VERIFY_SSL_CERTIFICATE : {{ . | quote }}
37+ {{- end }}
3838 S3_MAX_POOL_CONNECTIONS : {{ .Values.storage.s3_max_pool_connections | quote }}
3939 S3_REGION_NAME : {{ .Values.storage.s3_region_name }}
4040 S3_BUCKET : {{ .Values.storage.s3_bucket }}
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ storage:
3838 s3_client_secret : XX
3939 s3_ssl : True
4040 s3_verify_ssl : True
41+ s3_verify_ssl_certificate : null
4142 s3_max_pool_connections : 30
4243 s3_region_name : XX
4344 s3_bucket : nucliadb-{kbid}
You can’t perform that action at this time.
0 commit comments