You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.8 KiB
43 lines
1.8 KiB
{{- /*
|
|
Copyright Broadcom, Inc. All Rights Reserved.
|
|
SPDX-License-Identifier: APACHE-2.0
|
|
*/}}
|
|
|
|
{{- if .Values.controller.autoscaling.hpa.enabled }}
|
|
apiVersion: {{ include "common.capabilities.hpa.apiVersion" ( dict "context" $ ) }}
|
|
kind: HorizontalPodAutoscaler
|
|
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.hpa.annotations .Values.commonAnnotations }}
|
|
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.controller.autoscaling.hpa.annotations .Values.commonAnnotations ) "context" . ) }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
scaleTargetRef:
|
|
apiVersion: {{ template "common.capabilities.statefulset.apiVersion" . }}
|
|
kind: StatefulSet
|
|
name: {{ template "kafka.controller.fullname" . }}
|
|
minReplicas: {{ .Values.controller.autoscaling.hpa.minReplicas }}
|
|
maxReplicas: {{ .Values.controller.autoscaling.hpa.maxReplicas }}
|
|
metrics:
|
|
{{- if .Values.controller.autoscaling.hpa.targetCPU }}
|
|
- type: Resource
|
|
resource:
|
|
name: cpu
|
|
target:
|
|
type: Utilization
|
|
averageUtilization: {{ .Values.controller.autoscaling.hpa.targetCPU }}
|
|
{{- end }}
|
|
{{- if .Values.controller.autoscaling.hpa.targetMemory }}
|
|
- type: Resource
|
|
resource:
|
|
name: memory
|
|
target:
|
|
type: Utilization
|
|
averageUtilization: {{ .Values.controller.autoscaling.hpa.targetMemory }}
|
|
{{- end }}
|
|
{{- end }}
|
|
|