{{- /* Copyright Broadcom, Inc. All Rights Reserved. SPDX-License-Identifier: APACHE-2.0 */}} {{- if and (.Capabilities.APIVersions.Has "autoscaling.k8s.io/v1/VerticalPodAutoscaler") .Values.tracking.autoscaling.vpa.enabled }} apiVersion: {{ include "common.capabilities.vpa.apiVersion" . }} kind: VerticalPodAutoscaler metadata: name: {{ include "mlflow.v0.tracking.fullname" . }} namespace: {{ include "common.names.namespace" . | quote }} {{- $versionLabel := dict "app.kubernetes.io/version" ( include "common.images.version" ( dict "imageRoot" .Values.image "chart" .Chart ) ) }} {{- $labels := include "common.tplvalues.merge" ( dict "values" ( list .Values.commonLabels $versionLabel ) "context" . ) }} labels: {{- include "common.labels.standard" ( dict "customLabels" $labels "context" $ ) | nindent 4 }} app.kubernetes.io/part-of: mlflow app.kubernetes.io/component: tracking {{- if or .Values.tracking.autoscaling.vpa.annotations .Values.commonAnnotations }} {{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.tracking.autoscaling.vpa.annotations .Values.commonAnnotations ) "context" . ) }} annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }} {{- end }} spec: resourcePolicy: containerPolicies: - containerName: mlflow {{- with .Values.tracking.autoscaling.vpa.controlledResources }} controlledResources: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.tracking.autoscaling.vpa.maxAllowed }} maxAllowed: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.tracking.autoscaling.vpa.minAllowed }} minAllowed: {{- toYaml . | nindent 8 }} {{- end }} targetRef: apiVersion: {{ include "common.capabilities.deployment.apiVersion" . }} kind: Deployment name: {{ include "mlflow.v0.tracking.fullname" . }} {{- if .Values.tracking.autoscaling.vpa.updatePolicy }} updatePolicy: {{- with .Values.tracking.autoscaling.vpa.updatePolicy.updateMode }} updateMode: {{ . }} {{- end }} {{- end }} {{- end }}