Skip to content

Commit

Permalink
Merge pull request #30 from maristgeek/quote_extraEnv_values
Browse files Browse the repository at this point in the history
quote extraEnv values
  • Loading branch information
pmint93 authored Feb 21, 2022
2 parents e8f7869 + 80fc6d6 commit 9ec5d71
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/metabase/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
description: The easy, open source way for everyone in your company to ask questions
and learn from data.
name: metabase
version: 1.4.0
version: 1.4.1
appVersion: v0.41.6
maintainers:
- name: pmint93
Expand Down
4 changes: 2 additions & 2 deletions charts/metabase/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ spec:
valueFrom:
secretKeyRef:
name: {{ or .Values.database.existingSecret (printf "%s-database" (include "metabase.fullname" .))}}
key: {{ or .Values.database.existingSecretEncryptionKeyKey "encryptionKey" }}
key: {{ or .Values.database.existingSecretEncryptionKeyKey "encryptionKey" }}
{{- end }}
{{- if ne (.Values.database.type | lower) "h2" }}
{{- if or .Values.database.existingSecretConnectionURIKey .Values.database.connectionURI }}
Expand Down Expand Up @@ -152,7 +152,7 @@ spec:
{{- end }}
{{- range .Values.extraEnv }}
- name: {{ .name }}
value: {{ .value }}
value: {{ .value | quote }}
{{- end }}
{{- if .Values.envFromSecret }}
envFrom:
Expand Down

0 comments on commit 9ec5d71

Please sign in to comment.