123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {{- /*
- 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.pluginBarmanCloud.autoscaling.vpa.enabled }}
- apiVersion: {{ include "common.capabilities.vpa.apiVersion" . }}
- kind: VerticalPodAutoscaler
- metadata:
- name: {{ include "cloudnative-pg.plugin-barman-cloud.fullname" . }}
- namespace: {{ include "common.names.namespace" . | quote }}
- {{- /* Updating app.kubernetes.io/name because to avoid "duplicate deployment" error: https://github.com/cloudnative-pg/cloudnative-pg/blob/9c2769815ff78cbfc28e2a2818f3a04add33477c/pkg/certs/operator_deployment.go#L120 */}}
- {{- $appNameLabels := dict "app.kubernetes.io/name" "plugin-barman-cloud" }}
- {{- $labels := include "common.tplvalues.merge" ( dict "values" ( list $appNameLabels .Values.commonLabels) "context" . ) }}
- labels: {{- include "common.labels.standard" ( dict "customLabels" $labels "context" $ ) | nindent 4 }}
- app.kubernetes.io/part-of: cloudnative-pg
- app.kubernetes.io/component: plugin-barman-cloud
- {{- if or .Values.pluginBarmanCloud.autoscaling.vpa.annotations .Values.commonAnnotations }}
- {{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.pluginBarmanCloud.autoscaling.vpa.annotations .Values.commonAnnotations ) "context" . ) }}
- annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}
- {{- end }}
- spec:
- resourcePolicy:
- containerPolicies:
- - containerName: cloudnative-pg
- {{- with .Values.pluginBarmanCloud.autoscaling.vpa.controlledResources }}
- controlledResources:
- {{- toYaml . | nindent 8 }}
- {{- end }}
- {{- with .Values.pluginBarmanCloud.autoscaling.vpa.maxAllowed }}
- maxAllowed:
- {{- toYaml . | nindent 8 }}
- {{- end }}
- {{- with .Values.pluginBarmanCloud.autoscaling.vpa.minAllowed }}
- minAllowed:
- {{- toYaml . | nindent 8 }}
- {{- end }}
- targetRef:
- apiVersion: {{ include "common.capabilities.deployment.apiVersion" . }}
- kind: Deployment
- name: {{ include "cloudnative-pg.plugin-barman-cloud.fullname" . }}
- {{- if .Values.pluginBarmanCloud.autoscaling.vpa.updatePolicy }}
- updatePolicy:
- {{- with .Values.pluginBarmanCloud.autoscaling.vpa.updatePolicy.updateMode }}
- updateMode: {{ . }}
- {{- end }}
- {{- end }}
- {{- end }}
|