Skip to content

Commit 8c37a02

Browse files
committed
fix and upgrade metabase to v0.50.15
1 parent 784a582 commit 8c37a02

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

charts/metabase/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ dependencies:
3434
version: 1.5.23
3535
repository: https://inseefrlab.github.io/helm-charts-interactive-services
3636
- name: postgresql
37-
version: 11.6.15
37+
version: 15.5.19
3838
repository: https://charts.bitnami.com/bitnami
3939
enabled: true

charts/metabase/templates/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ spec:
4343
- name: MB_DB_PORT
4444
value: "5432"
4545
- name: MB_DB_USER
46-
value: {{ .Values.global.postgresql.auth.username }}
46+
value: postgres
4747
- name: MB_DB_PASS
48-
value: {{ .Values.global.postgresql.auth.password }}
48+
value: {{ .Values.global.postgresql.auth.postgresPassword }}
4949
- name: MB_DB_HOST
5050
value: {{ .Values.postgresql.fullnameOverride }}
5151
- name: MB_ADMIN_EMAIL

charts/metabase/values.schema.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,17 @@
195195
"overwriteDefaultWith": "{{project.password}}"
196196
}
197197
},
198+
"postgresPassword": {
199+
"type": "string",
200+
"title": "Password",
201+
"default": "changeme",
202+
"x-form": {
203+
"value": "{{project.password}}"
204+
},
205+
"x-onyxia": {
206+
"overwriteDefaultWith": "{{project.password}}"
207+
}
208+
},
198209
"database": {
199210
"description": "Name for the default database that is created when the image is first started.",
200211
"type": "string",

charts/metabase/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@ service:
55
repository: "metabase/metabase"
66
pullPolicy: IfNotPresent
77
# Overrides the image tag whose default is the chart appVersion.
8-
tag: "v0.48.7"
8+
tag: "v0.50.15"
99

1010
global:
1111
postgresql:
1212
auth:
1313
username: "admin"
1414
password: "changeme"
1515
database: "metabase-metadata"
16+
postgresPassword: "changeme"
1617

1718
postgresql:
1819
image:

0 commit comments

Comments
 (0)