Skip to content

Commit c23869d

Browse files
committed
fix: remove quotes from basic auth credentials in config
MLflow's basic_auth.ini parser doesn't expect quoted values. The quote filter was causing the username and password to be treated as literal strings with quotes, breaking authentication. Removed | quote filter from adminUsername and adminPassword in the basic_auth.ini template. Bump chart version to 0.4.11.
1 parent 7df7833 commit c23869d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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.10"
5+
version: "0.4.11"
66
appVersion: "3.3.2"
77
home: https://github.com/mlflow/mlflow/tree/master/charts/mlflow
88
sources:

applications/mlflow/charts/mlflow/templates/mlflow-auth-secret.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ stringData:
2020
[mlflow]
2121
default_permission = {{ .defaultPermission }}
2222
database_uri = {{ $dbUri }}
23-
admin_username = {{ .adminUsername | quote }}
24-
admin_password = {{ .adminPassword | quote }}
23+
admin_username = {{ .adminUsername }}
24+
admin_password = {{ .adminPassword }}
2525
authorization_function = {{ .authorizationFunction }}
2626
{{- end }}
2727
{{- end }}

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.10
8+
chartVersion: 0.4.11
99
weight: 10
1010
helmUpgradeFlags:
1111
- --wait

0 commit comments

Comments
 (0)