48 lines
1.9 KiB
YAML
48 lines
1.9 KiB
YAML
{{- if and (include "elasticsearch.data.enabled" .) .Values.data.autoscaling.enabled }}
|
|
apiVersion: {{ include "common.capabilities.hpa.apiVersion" ( dict "context" $ ) }}
|
|
kind: HorizontalPodAutoscaler
|
|
metadata:
|
|
name: {{ include "elasticsearch.data.fullname" . }}
|
|
namespace: {{ include "common.names.namespace" . | quote }}
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
app.kubernetes.io/component: data
|
|
{{- 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.statefulset.apiVersion" . }}
|
|
kind: StatefulSet
|
|
name: {{ include "elasticsearch.data.fullname" . }}
|
|
minReplicas: {{ .Values.data.autoscaling.minReplicas }}
|
|
maxReplicas: {{ .Values.data.autoscaling.maxReplicas }}
|
|
metrics:
|
|
{{- if .Values.data.autoscaling.targetCPU }}
|
|
- type: Resource
|
|
resource:
|
|
name: cpu
|
|
{{- if semverCompare "<1.23-0" (include "common.capabilities.kubeVersion" .) }}
|
|
targetAverageUtilization: {{ .Values.data.autoscaling.targetCPU }}
|
|
{{- else }}
|
|
target:
|
|
type: Utilization
|
|
averageUtilization: {{ .Values.data.autoscaling.targetCPU }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- if .Values.data.autoscaling.targetMemory }}
|
|
- type: Resource
|
|
resource:
|
|
name: memory
|
|
{{- if semverCompare "<1.23-0" (include "common.capabilities.kubeVersion" .) }}
|
|
targetAverageUtilization: {{ .Values.data.autoscaling.targetMemory }}
|
|
{{- else }}
|
|
target:
|
|
type: Utilization
|
|
averageUtilization: {{ .Values.data.autoscaling.targetMemory }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|