Browse Source

Fix syntax (parameter order) for flaskServerSecretKey in template (#33248)

* Fix syntax (parameter order) for flaskServerSecretKey in template

Signed-off-by: Magnus Billvik <magnus@billvik.se>

* Version bump

Signed-off-by: Magnus Billvik <magnus@billvik.se>

* Update CHANGELOG.md

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>

---------

Signed-off-by: Magnus Billvik <magnus@billvik.se>
Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
Co-authored-by: Bitnami Bot <bitnami.bot@broadcom.com>
Magnus Billvik 4 months ago
parent
commit
5397041481
3 changed files with 8 additions and 4 deletions
  1. 6 2
      bitnami/mlflow/CHANGELOG.md
  2. 1 1
      bitnami/mlflow/Chart.yaml
  3. 1 1
      bitnami/mlflow/templates/_helpers.tpl

+ 6 - 2
bitnami/mlflow/CHANGELOG.md

@@ -1,8 +1,12 @@
 # Changelog
 
-## 3.0.2 (2025-04-24)
+## 3.0.3 (2025-04-29)
 
-* [bitnami/mlflow] Release 3.0.2 ([#33164](https://github.com/bitnami/charts/pull/33164))
+* Fix syntax (parameter order) for flaskServerSecretKey in template ([#33248](https://github.com/bitnami/charts/pull/33248))
+
+## <small>3.0.2 (2025-04-24)</small>
+
+* [bitnami/mlflow] Release 3.0.2 (#33164) ([c4882c1](https://github.com/bitnami/charts/commit/c4882c117384e928e47c50113acc3c52511153c0)), closes [#33164](https://github.com/bitnami/charts/issues/33164)
 
 ## <small>3.0.1 (2025-04-09)</small>
 

+ 1 - 1
bitnami/mlflow/Chart.yaml

@@ -45,4 +45,4 @@ sources:
 - https://github.com/bitnami/charts/tree/main/bitnami/mlflow
 - https://github.com/bitnami/containers/tree/main/bitnami/mlflow
 - https://github.com/mlflow/mlflow
-version: 3.0.2
+version: 3.0.3

+ 1 - 1
bitnami/mlflow/templates/_helpers.tpl

@@ -78,7 +78,7 @@ Return the MLflow Tracking Secret key for the user
 Return the MLflow Tracking Secret key for the Flask Server secret key
 */}}
 {{- define "mlflow.v0.tracking.flaskServerSecretKey" -}}
-{{- default .Values.tracking.auth.existingSecretFlaskServerSecretKey "flask-server-secret-key" -}}
+{{- default "flask-server-secret-key" .Values.tracking.auth.existingSecretFlaskServerSecretKey -}}
 {{- end -}}
 
 {{/*