mirror of
https://github.com/bitnami/charts.git
synced 2026-03-14 06:47:28 +08:00
46 lines
1.8 KiB
YAML
46 lines
1.8 KiB
YAML
{{- /*
|
|
Copyright Broadcom, Inc. All Rights Reserved.
|
|
SPDX-License-Identifier: APACHE-2.0
|
|
*/}}
|
|
|
|
{{- if and (.Capabilities.APIVersions.Has "autoscaling.k8s.io/v1/VerticalPodAutoscaler") .Values.ingest.autoscaling.vpa.enabled }}
|
|
apiVersion: {{ include "common.capabilities.vpa.apiVersion" . }}
|
|
kind: VerticalPodAutoscaler
|
|
metadata:
|
|
name: {{ include "opensearch.ingest.fullname" . }}
|
|
namespace: {{ include "common.names.namespace" . | quote }}
|
|
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
app.kubernetes.io/part-of: opensearch
|
|
app.kubernetes.io/component: ingest
|
|
{{- if or .Values.ingest.autoscaling.vpa.annotations .Values.commonAnnotations }}
|
|
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.ingest.autoscaling.vpa.annotations .Values.commonAnnotations ) "context" . ) }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
resourcePolicy:
|
|
containerPolicies:
|
|
- containerName: opensearch
|
|
{{- with .Values.ingest.autoscaling.vpa.controlledResources }}
|
|
controlledResources:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.ingest.autoscaling.vpa.maxAllowed }}
|
|
maxAllowed:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.ingest.autoscaling.vpa.minAllowed }}
|
|
minAllowed:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
targetRef:
|
|
apiVersion: {{ (include "common.capabilities.statefulset.apiVersion" .) }}
|
|
kind: StatefulSet
|
|
name: {{ include "opensearch.ingest.fullname" . }}
|
|
{{- if .Values.ingest.autoscaling.vpa.updatePolicy }}
|
|
updatePolicy:
|
|
{{- with .Values.ingest.autoscaling.vpa.updatePolicy.updateMode }}
|
|
updateMode: {{ . }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|