You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardExpand all lines: applications/mlflow/charts/mlflow/values.yaml
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -285,7 +285,8 @@ mlflow:
285
285
# For more information about how to configure backend store, please visit https://mlflow.org/docs/latest/tracking/backend-stores.html
286
286
backendStore:
287
287
# -- 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
289
290
# -- Name of an existing secret which contains key `MLFLOW_BACKEND_STORE_URI`
290
291
# 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
0 commit comments