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: disable database upgrade, let MLflow auto-create auth tables
MLflow 3.x with basic auth will automatically create necessary
auth tables on first run. Disabling explicit database upgrade
to avoid init container failures.
Bump chart version to 0.4.10.
Copy file name to clipboardExpand all lines: applications/mlflow/charts/mlflow/values.yaml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -286,8 +286,8 @@ mlflow:
286
286
# For more information about how to configure backend store, please visit https://mlflow.org/docs/latest/tracking/backend-stores.html
287
287
backendStore:
288
288
# -- Specifies whether to run `mlflow db upgrade ${MLFLOW_BACKEND_STORE_URI}` to upgrade database schema when use a database as backend store
289
-
#Required for MLflow 3.x with basic auth to initialize auth tables
290
-
databaseUpgrade: true
289
+
# MLflow 3.x with basic auth will auto-create auth tables on first run
290
+
databaseUpgrade: false
291
291
# -- Name of an existing secret which contains key `MLFLOW_BACKEND_STORE_URI`
292
292
# 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