[bitnami/minio] Fix MinIO deployment syntax

Signed-off-by: juan131 <juan@bitnami.com>
This commit is contained in:
juan131
2019-05-17 16:39:43 +02:00
parent f98d53c3f3
commit c179f7012c
3 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
apiVersion: v1
version: 0.1.1
version: 0.1.2
appVersion: 2019.5.2
description: MinIO is an object storage server, compatible with Amazon S3 cloud storage service, mainly used for storing unstructured data (such as photos, videos, log files, etc.)
keywords:

View File

@@ -89,7 +89,7 @@ spec:
value: {{ .Values.defaultBuckets }}
{{- end }}
- name: MINIO_BROWSER
value: {{ ternary "off" "on" .Values.disableWebUI }}
value: {{ ternary "off" "on" .Values.disableWebUI | quote }}
{{- if .Values.extraEnv }}
{{ toYaml .Values.extraEnv | indent 8 }}
{{- end }}

View File

@@ -104,7 +104,7 @@ spec:
key: secret-key
{{- end }}
- name: MINIO_BROWSER
value: {{ ternary "off" "on" .Values.disableWebUI }}
value: {{ ternary "off" "on" .Values.disableWebUI | quote }}
{{- if .Values.extraEnv }}
{{ toYaml .Values.extraEnv | indent 8 }}
{{- end }}