mirror of
https://github.com/bitnami/charts.git
synced 2026-08-10 14:15:55 +08:00
[bitnami/mlflow] Adds resources to init containers (#33910)
* [bitnami/mlflow] feat: add resources to init containers Signed-off-by: Johannes Voscort <johannes.voscort@codecentric.de> * [bitnami/mlflow]: bump chart version Signed-off-by: Johannes Voscort <johannes.voscort@codecentric.de> * Update CHANGELOG.md Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> * Update CHANGELOG.md Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> * Update CHANGELOG.md Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> * Update CHANGELOG.md Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> --------- Signed-off-by: Johannes Voscort <johannes.voscort@codecentric.de> Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> Signed-off-by: Johannes- <johannes.voscort@codecentric.de> Signed-off-by: Carlos Rodríguez Hernández <carlos.rodriguez-hernandez@broadcom.com> Signed-off-by: Alvaro Neira Ayuso <alvaro.neira@broadcom.com> Co-authored-by: Bitnami Bot <bitnami.bot@broadcom.com> Co-authored-by: Carlos Rodríguez Hernández <carlos.rodriguez-hernandez@broadcom.com> Co-authored-by: Alvaro Neira Ayuso <alvaro.neira@broadcom.com>
This commit is contained in:
co-authored by
Bitnami Bot
Carlos Rodríguez Hernández
Alvaro Neira Ayuso
parent
a2eb74fc72
commit
c5eb6988a9
@@ -1,8 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## 5.0.6 (2025-06-30)
|
||||
## 5.1.0 (2025-06-30)
|
||||
|
||||
* [bitnami/mlflow] :zap: :arrow_up: Update dependency references ([#34718](https://github.com/bitnami/charts/pull/34718))
|
||||
* [bitnami/mlflow] Adds resources to init containers ([#33910](https://github.com/bitnami/charts/pull/33910))
|
||||
|
||||
## <small>5.0.6 (2025-06-30)</small>
|
||||
|
||||
* [bitnami/mlflow] :zap: :arrow_up: Update dependency references (#34718) ([9f0041b](https://github.com/bitnami/charts/commit/9f0041bad7245a4b6bd59923cf0fbaaf08cc8dc2)), closes [#34718](https://github.com/bitnami/charts/issues/34718)
|
||||
|
||||
## <small>5.0.5 (2025-06-30)</small>
|
||||
|
||||
|
||||
@@ -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.0.6
|
||||
version: 5.1.0
|
||||
|
||||
@@ -144,6 +144,11 @@ Init container definition for copying the certificates
|
||||
mountPath: /tmp/certs
|
||||
- name: mlflow-certificates
|
||||
mountPath: /bitnami/mlflow/certs
|
||||
{{- if .Values.tracking.resources }}
|
||||
resources: {{- toYaml .Values.tracking.resources | nindent 4 }}
|
||||
{{- else if ne .Values.tracking.resourcesPreset "none" }}
|
||||
resources: {{- include "common.resources.preset" (dict "type" .Values.tracking.resourcesPreset) | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
||||
{{/*
|
||||
@@ -167,6 +172,11 @@ Init container definition for waiting for the database to be ready
|
||||
mountPath: /tmp
|
||||
- name: rendered-basic-auth
|
||||
mountPath: /bitnami/rendered-basic-auth
|
||||
{{- if .Values.tracking.resources }}
|
||||
resources: {{- toYaml .Values.tracking.resources | nindent 4 }}
|
||||
{{- else if ne .Values.tracking.resourcesPreset "none" }}
|
||||
resources: {{- include "common.resources.preset" (dict "type" .Values.tracking.resourcesPreset) | nindent 4 }}
|
||||
{{- end }}
|
||||
- name: render-auth-conf
|
||||
image: {{ include "mlflow.v0.waitContainer.image" . }}
|
||||
imagePullPolicy: {{ .Values.waitContainer.image.pullPolicy }}
|
||||
@@ -231,6 +241,11 @@ Init container definition for waiting for the database to be ready
|
||||
mountPath: /bitnami/basic-auth-overrides
|
||||
- name: rendered-basic-auth
|
||||
mountPath: /bitnami/rendered-basic-auth
|
||||
{{- if .Values.tracking.resources }}
|
||||
resources: {{- toYaml .Values.tracking.resources | nindent 4 }}
|
||||
{{- else if ne .Values.tracking.resourcesPreset "none" }}
|
||||
resources: {{- include "common.resources.preset" (dict "type" .Values.tracking.resourcesPreset) | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- end -}}
|
||||
|
||||
{{/*
|
||||
@@ -258,6 +273,11 @@ Init container definition for upgrading the database
|
||||
volumeMounts:
|
||||
- name: tmp
|
||||
mountPath: /tmp
|
||||
{{- if .Values.tracking.resources }}
|
||||
resources: {{- toYaml .Values.tracking.resources | nindent 4 }}
|
||||
{{- else if ne .Values.tracking.resourcesPreset "none" }}
|
||||
resources: {{- include "common.resources.preset" (dict "type" .Values.tracking.resourcesPreset) | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- end -}}
|
||||
|
||||
{{/*
|
||||
@@ -288,6 +308,11 @@ Init container definition for upgrading the database
|
||||
volumeMounts:
|
||||
- name: tmp
|
||||
mountPath: /tmp
|
||||
{{- if .Values.tracking.resources }}
|
||||
resources: {{- toYaml .Values.tracking.resources | nindent 4 }}
|
||||
{{- else if ne .Values.tracking.resourcesPreset "none" }}
|
||||
resources: {{- include "common.resources.preset" (dict "type" .Values.tracking.resourcesPreset) | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- end -}}
|
||||
|
||||
{{/*
|
||||
@@ -717,6 +742,11 @@ Return the definition of the git clone init container
|
||||
{{- if .Values.run.source.git.extraVolumeMounts }}
|
||||
{{- include "common.tplvalues.render" (dict "value" .Values.run.source.git.extraVolumeMounts "context" .) | nindent 12 }}
|
||||
{{- end }}
|
||||
{{- if .Values.run.resources }}
|
||||
resources: {{- toYaml .Values.run.resources | nindent 4 }}
|
||||
{{- else if ne .Values.run.resourcesPreset "none" }}
|
||||
resources: {{- include "common.resources.preset" (dict "type" .Values.run.resourcesPreset) | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- end -}}
|
||||
|
||||
{{/*
|
||||
@@ -769,6 +799,11 @@ Init container definition for waiting for the database to be ready
|
||||
volumeMounts:
|
||||
- name: tmp
|
||||
mountPath: /tmp
|
||||
{{- if .context.Values.run.resources }}
|
||||
resources: {{- toYaml .context.Values.run.resources | nindent 4 }}
|
||||
{{- else if ne .context.Values.run.resourcesPreset "none" }}
|
||||
resources: {{- include "common.resources.preset" (dict "type" .context.Values.run.resourcesPreset) | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- end -}}
|
||||
|
||||
{{/*
|
||||
|
||||
Reference in New Issue
Block a user