{{- /* Copyright Broadcom, Inc. All Rights Reserved. SPDX-License-Identifier: APACHE-2.0 */}} {{- if and (include "common.capabilities.apiVersions.has" ( dict "version" "autoscaling.k8s.io/v1/VerticalPodAutoscaler" "context" . )) .Values.controller.autoscaling.vpa.enabled }} apiVersion: {{ include "common.capabilities.vpa.apiVersion" . }} kind: VerticalPodAutoscaler metadata: name: {{ template "kafka.controller.fullname" . }} namespace: {{ include "common.names.namespace" . | quote }} labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }} app.kubernetes.io/component: controller-eligible app.kubernetes.io/part-of: kafka {{- if or .Values.controller.autoscaling.vpa.annotations .Values.commonAnnotations }} {{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.controller.autoscaling.vpa.annotations .Values.commonAnnotations ) "context" . ) }} annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }} {{- end }} spec: resourcePolicy: containerPolicies: - containerName: kafka {{- with .Values.controller.autoscaling.vpa.controlledResources }} controlledResources: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.controller.autoscaling.vpa.maxAllowed }} maxAllowed: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.controller.autoscaling.vpa.minAllowed }} minAllowed: {{- toYaml . | nindent 8 }} {{- end }} targetRef: apiVersion: {{ (include "common.capabilities.statefulset.apiVersion" .) }} kind: StatefulSet name: {{ template "kafka.controller.fullname" . }} {{- if .Values.controller.autoscaling.vpa.updatePolicy }} updatePolicy: {{- with .Values.controller.autoscaling.vpa.updatePolicy.updateMode }} updateMode: {{ . }} {{- end }} {{- end }} {{- end }}