[bitnami/mlflow] - make MLFLOW_S3_ENDPOINT_URL env option in tracking mlflow container (#25294)

* make MLFLOW_S3_ENDPOINT_URL env option in mlflow container

Signed-off-by: hritik.kumar@telekom-digital.com <hritik.kumar@telekom-digital.com>

* update README.md

Signed-off-by: hritik.kumar@telekom-digital.com <hritik.kumar@telekom-digital.com>

* update chart version and revert minio enabled value

Signed-off-by: hritik.kumar@telekom-digital.com <hritik.kumar@telekom-digital.com>

* Update README.md with readme-generator-for-helm

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Signed-off-by: hritik.kumar@telekom-digital.com <hritik.kumar@telekom-digital.com>

* correct chart Version and tracking deployment env

Signed-off-by: hritik.kumar@telekom-digital.com <hritik.kumar@telekom-digital.com>

* revert waitContainer related changes

Signed-off-by: hritik.kumar@telekom-digital.com <hritik.kumar@telekom-digital.com>

* Update bitnami/mlflow/README.md

Signed-off-by: David Gomez <davidbhlm@gmail.com>

---------

Signed-off-by: hritik.kumar@telekom-digital.com <hritik.kumar@telekom-digital.com>
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Signed-off-by: David Gomez <davidbhlm@gmail.com>
Co-authored-by: hritik.kumar@telekom-digital.com <hritik.kumar@telekom-digital.com>
Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
Co-authored-by: David Gomez <davidbhlm@gmail.com>
This commit is contained in:
Hritik
2024-04-24 15:58:03 +05:30
committed by GitHub
parent 0198bd1975
commit 5e18a51c16
2 changed files with 3 additions and 1 deletions

View File

@@ -43,4 +43,4 @@ name: mlflow
sources:
- https://github.com/bitnami/containers/tree/main/bitnami/mlflow
- https://github.com/mlflow/mlflow
version: 1.0.2
version: 1.0.3

View File

@@ -185,6 +185,8 @@ spec:
name: {{ include "mlflow.v0.s3.secretName" . }}
key: {{ include "mlflow.v0.s3.secretAccessKeyKey" . | quote }}
{{- end }}
{{- end }}
{{- if .Values.minio.enabled }}
- name: MLFLOW_S3_ENDPOINT_URL
value: {{ printf "%s://%s:%v" (include "mlflow.v0.s3.protocol" .) (include "mlflow.v0.s3.host" .) (include "mlflow.v0.s3.port" .) | quote }}
{{- end }}