Skip to content

Commit

Permalink
fix and upgrade metabase to v0.50.15
Browse files Browse the repository at this point in the history
  • Loading branch information
ihiverlet committed Jul 25, 2024
1 parent 784a582 commit 8c37a02
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/metabase/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ dependencies:
version: 1.5.23
repository: https://inseefrlab.github.io/helm-charts-interactive-services
- name: postgresql
version: 11.6.15
version: 15.5.19
repository: https://charts.bitnami.com/bitnami
enabled: true
4 changes: 2 additions & 2 deletions charts/metabase/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ spec:
- name: MB_DB_PORT
value: "5432"
- name: MB_DB_USER
value: {{ .Values.global.postgresql.auth.username }}
value: postgres
- name: MB_DB_PASS
value: {{ .Values.global.postgresql.auth.password }}
value: {{ .Values.global.postgresql.auth.postgresPassword }}
- name: MB_DB_HOST
value: {{ .Values.postgresql.fullnameOverride }}
- name: MB_ADMIN_EMAIL
Expand Down
11 changes: 11 additions & 0 deletions charts/metabase/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,17 @@
"overwriteDefaultWith": "{{project.password}}"
}
},
"postgresPassword": {
"type": "string",
"title": "Password",
"default": "changeme",
"x-form": {
"value": "{{project.password}}"
},
"x-onyxia": {
"overwriteDefaultWith": "{{project.password}}"
}
},
"database": {
"description": "Name for the default database that is created when the image is first started.",
"type": "string",
Expand Down
3 changes: 2 additions & 1 deletion charts/metabase/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@ service:
repository: "metabase/metabase"
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "v0.48.7"
tag: "v0.50.15"

global:
postgresql:
auth:
username: "admin"
password: "changeme"
database: "metabase-metadata"
postgresPassword: "changeme"

postgresql:
image:
Expand Down

0 comments on commit 8c37a02

Please sign in to comment.