Skip to content

Commit 13d9880

Browse files
committed
fix: enable database upgrade for MLflow 3.x basic auth
MLflow 3.x with basic authentication requires database migration to initialize auth tables. Enabling databaseUpgrade ensures the database schema is properly initialized before the server starts. Bump chart version to 0.4.8.
1 parent 43b7a89 commit 13d9880

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

applications/mlflow/charts/mlflow/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: mlflow
33
description: A Helm chart for MLflow - Open source platform for the machine learning lifecycle.
44
type: application
5-
version: "0.4.7"
5+
version: "0.4.8"
66
appVersion: "3.3.2"
77
home: https://github.com/mlflow/mlflow/tree/master/charts/mlflow
88
sources:

applications/mlflow/charts/mlflow/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,8 @@ mlflow:
285285
# For more information about how to configure backend store, please visit https://mlflow.org/docs/latest/tracking/backend-stores.html
286286
backendStore:
287287
# -- Specifies whether to run `mlflow db upgrade ${MLFLOW_BACKEND_STORE_URI}` to upgrade database schema when use a database as backend store
288-
databaseUpgrade: false
288+
# Required for MLflow 3.x with basic auth to initialize auth tables
289+
databaseUpgrade: true
289290
# -- Name of an existing secret which contains key `MLFLOW_BACKEND_STORE_URI`
290291
# If an existing secret is not provided, a new secret will be created to store the backend store URI using the details from .Values.postgres when Embedded PostgreSQL is enabled
291292
existingSecret: ""

applications/mlflow/release/mlflow-chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
chart:
77
name: mlflow
8-
chartVersion: 0.4.7
8+
chartVersion: 0.4.8
99
weight: 10
1010
helmUpgradeFlags:
1111
- --wait

0 commit comments

Comments
 (0)