diff --git a/charts/metabase/Chart.yaml b/charts/metabase/Chart.yaml index 4a382cc..5dbbfb1 100644 --- a/charts/metabase/Chart.yaml +++ b/charts/metabase/Chart.yaml @@ -3,8 +3,8 @@ description: The easy, open source way for everyone in your company to ask questions and learn from data. name: metabase -version: 2.14.0 -appVersion: v0.49.3 +version: 2.14.2 +appVersion: v0.49.6 maintainers: - name: pmint93 email: phamminhthanh69@gmail.com diff --git a/charts/metabase/templates/deployment.yaml b/charts/metabase/templates/deployment.yaml index 269f0c7..d252b05 100644 --- a/charts/metabase/templates/deployment.yaml +++ b/charts/metabase/templates/deployment.yaml @@ -50,7 +50,7 @@ spec: {{- end }} containers: - name: {{ template "metabase.name" . }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" + image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" {{- with .Values.image.command }} command: {{- toYaml . | nindent 12 }} diff --git a/charts/metabase/values.yaml b/charts/metabase/values.yaml index 8598a66..6a73f78 100644 --- a/charts/metabase/values.yaml +++ b/charts/metabase/values.yaml @@ -11,7 +11,8 @@ podAnnotations: {} podLabels: {} image: repository: metabase/metabase - tag: v0.49.3 + # Overrides the image tag whose default is the chart appVersion. + tag: "" command: [] pullPolicy: IfNotPresent pullSecrets: []