diff --git a/bitnami/mlflow/CHANGELOG.md b/bitnami/mlflow/CHANGELOG.md
index 5af1edc06b80d9..c0a59366f9598c 100644
--- a/bitnami/mlflow/CHANGELOG.md
+++ b/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))
+
+## 3.0.2 (2025-04-24)
+
+* [bitnami/mlflow] Release 3.0.2 (#33164) ([c4882c1](https://github.com/bitnami/charts/commit/c4882c117384e928e47c50113acc3c52511153c0)), closes [#33164](https://github.com/bitnami/charts/issues/33164)
## 3.0.1 (2025-04-09)
diff --git a/bitnami/mlflow/Chart.yaml b/bitnami/mlflow/Chart.yaml
index aeb8032898022e..94a050b8c8bd1b 100644
--- a/bitnami/mlflow/Chart.yaml
+++ b/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
diff --git a/bitnami/mlflow/templates/_helpers.tpl b/bitnami/mlflow/templates/_helpers.tpl
index ef826974794370..df6971d3a0d107 100644
--- a/bitnami/mlflow/templates/_helpers.tpl
+++ b/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 -}}
{{/*