{{- if .Values.coordinating.autoscaling.enabled }} apiVersion: autoscaling/v2beta1 kind: HorizontalPodAutoscaler metadata: name: {{ include "elasticsearch.coordinating.fullname" . }} namespace: {{ .Release.Namespace | quote }} labels: {{- include "common.labels.standard" . | nindent 4 }} app.kubernetes.io/component: coordinating-only {{- if .Values.commonLabels }} {{- include "common.tplvalues.render" (dict "value" .Values.commonLabels "context" $) | nindent 4 }} {{- end }} {{- if .Values.commonAnnotations }} annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} {{- end }} spec: scaleTargetRef: apiVersion: {{ template "common.capabilities.deployment.apiVersion" . }} kind: StatefulSet name: {{ include "elasticsearch.coordinating.fullname" . }} minReplicas: {{ .Values.coordinating.autoscaling.minReplicas }} maxReplicas: {{ .Values.coordinating.autoscaling.maxReplicas }} metrics: {{- if .Values.coordinating.autoscaling.targetCPU }} - type: Resource resource: name: cpu targetAverageUtilization: {{ .Values.coordinating.autoscaling.targetCPU }} {{- end }} {{- if .Values.coordinating.autoscaling.targetMemory }} - type: Resource resource: name: memory targetAverageUtilization: {{ .Values.coordinating.autoscaling.targetMemory }} {{- end }} {{- end }}