-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhpa-worker.yaml
35 lines (35 loc) · 1.04 KB
/
hpa-worker.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{{- range $i, $value := .Values.worker }}
{{- if $value.autoscaling.enabled }}
---
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
name: {{ include "larakube.fullname" $ }}-worker-{{ $i }}
labels:
{{- include "larakube.labels" $ | nindent 4 }}
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: {{ include "larakube.fullname" $ }}
minReplicas: {{ $value.autoscaling.minReplicas }}
maxReplicas: {{ $value.autoscaling.maxReplicas }}
metrics:
{{- if $value.autoscaling.targetCPUUtilizationPercentage }}
- type: Resource
resource:
name: cpu
target:
type: Utilization
averageUtilization: {{ $value.autoscaling.targetCPUUtilizationPercentage }}
{{- end }}
{{- if $value.autoscaling.targetMemoryUtilizationPercentage }}
- type: Resource
resource:
name: memory
target:
type: Utilization
averageUtilization: {{ $value.autoscaling.targetMemoryUtilizationPercentage }}
{{- end }}
{{- end }}
{{- end }}