[bitnami/charts/issues/35055] Increase lenght of auto-generated password for MLFlow (#35156)

* [bitnami/charts/issues/35055] Increase lenght of auto-generated password for MLFlow

Signed-off-by: Jota Martos <jota.martos@broadcom.com>

* Update CHANGELOG.md

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

---------

Signed-off-by: Jota Martos <jota.martos@broadcom.com>
Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
Co-authored-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Juan José Martos
2025-07-16 09:52:24 +02:00
committed by GitHub
parent efb2eb0140
commit ec1ff13546
3 changed files with 8 additions and 4 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 5.1.3 (2025-07-15)
## 5.1.4 (2025-07-16)
* [bitnami/mlflow] :zap: :arrow_up: Update dependency references ([#35114](https://github.com/bitnami/charts/pull/35114))
* [bitnami/charts/issues/35055] Increase lenght of auto-generated password for MLFlow ([#35156](https://github.com/bitnami/charts/pull/35156))
## <small>5.1.3 (2025-07-15)</small>
* [bitnami/mlflow] :zap: :arrow_up: Update dependency references (#35114) ([c800f4a](https://github.com/bitnami/charts/commit/c800f4ac124887a5921ca6012113fe6482a2b2ac)), closes [#35114](https://github.com/bitnami/charts/issues/35114)
## <small>5.1.2 (2025-07-08)</small>

View File

@@ -47,4 +47,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: 5.1.3
version: 5.1.4

View File

@@ -18,6 +18,6 @@ metadata:
data:
# We need to add the username as it is required by the ServiceMonitor object
admin-user: {{ include "common.secrets.passwords.manage" (dict "secret" (include "mlflow.v0.tracking.fullname" .) "key" "admin-user" "providedValues" (list "tracking.auth.username") "context" $) }}
admin-password: {{ include "common.secrets.passwords.manage" (dict "secret" (include "mlflow.v0.tracking.fullname" .) "key" "admin-password" "providedValues" (list "tracking.auth.password") "context" $) }}
admin-password: {{ include "common.secrets.passwords.manage" (dict "secret" (include "mlflow.v0.tracking.fullname" .) "key" "admin-password" "providedValues" (list "tracking.auth.password") "length" 12 "context" $) }}
flask-server-secret-key: {{ include "common.secrets.passwords.manage" (dict "secret" (include "mlflow.v0.tracking.fullname" .) "key" "flask-server-secret-key" "providedValues" (list "tracking.auth.flaskServerSecretKey") "failOnNew" false "context" $) }}
{{- end }}