Mohammed Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 1 | {{- if and (eq .Values.controller.kind "Deployment") .Values.controller.autoscaling.enabled (not .Values.controller.keda.enabled) -}} |
| 2 | apiVersion: {{ ternary "autoscaling/v2" "autoscaling/v2beta2" (.Capabilities.APIVersions.Has "autoscaling/v2") }} |
Mohammed Naser | 9ad0d46 | 2023-01-15 20:36:37 -0500 | [diff] [blame] | 3 | kind: HorizontalPodAutoscaler |
| 4 | metadata: |
Mohammed Naser | 9ad0d46 | 2023-01-15 20:36:37 -0500 | [diff] [blame] | 5 | {{- with .Values.controller.autoscaling.annotations }} |
Mohammed Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 6 | annotations: {{ toYaml . | nindent 4 }} |
Mohammed Naser | 9ad0d46 | 2023-01-15 20:36:37 -0500 | [diff] [blame] | 7 | {{- end }} |
| 8 | labels: |
| 9 | {{- include "ingress-nginx.labels" . | nindent 4 }} |
| 10 | app.kubernetes.io/component: controller |
| 11 | {{- with .Values.controller.labels }} |
| 12 | {{- toYaml . | nindent 4 }} |
| 13 | {{- end }} |
| 14 | name: {{ include "ingress-nginx.controller.fullname" . }} |
Mohammed Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 15 | namespace: {{ include "ingress-nginx.namespace" . }} |
Mohammed Naser | 9ad0d46 | 2023-01-15 20:36:37 -0500 | [diff] [blame] | 16 | spec: |
| 17 | scaleTargetRef: |
| 18 | apiVersion: apps/v1 |
| 19 | kind: Deployment |
| 20 | name: {{ include "ingress-nginx.controller.fullname" . }} |
| 21 | minReplicas: {{ .Values.controller.autoscaling.minReplicas }} |
| 22 | maxReplicas: {{ .Values.controller.autoscaling.maxReplicas }} |
| 23 | metrics: |
| 24 | {{- with .Values.controller.autoscaling.targetMemoryUtilizationPercentage }} |
| 25 | - type: Resource |
| 26 | resource: |
| 27 | name: memory |
| 28 | target: |
| 29 | type: Utilization |
| 30 | averageUtilization: {{ . }} |
| 31 | {{- end }} |
| 32 | {{- with .Values.controller.autoscaling.targetCPUUtilizationPercentage }} |
| 33 | - type: Resource |
| 34 | resource: |
| 35 | name: cpu |
| 36 | target: |
| 37 | type: Utilization |
| 38 | averageUtilization: {{ . }} |
| 39 | {{- end }} |
| 40 | {{- with .Values.controller.autoscalingTemplate }} |
| 41 | {{- toYaml . | nindent 2 }} |
| 42 | {{- end }} |
| 43 | {{- with .Values.controller.autoscaling.behavior }} |
| 44 | behavior: |
| 45 | {{- toYaml . | nindent 4 }} |
| 46 | {{- end }} |
| 47 | {{- end }} |