summaryrefslogtreecommitdiff
path: root/chart/templates/hpa.yaml
diff options
context:
space:
mode:
authorakiyamn2022-07-19 10:46:27 +1000
committerakiyamn2022-07-19 10:46:27 +1000
commit1c7fb64ff23b7ba12d4d5ed8d8ec6bb01f876ec0 (patch)
treebb5a2157d1cf4f03c92468a0538d41945ad9d257 /chart/templates/hpa.yaml
downloadhelm-test-1c7fb64ff23b7ba12d4d5ed8d8ec6bb01f876ec0.tar.gz
helm-test-1c7fb64ff23b7ba12d4d5ed8d8ec6bb01f876ec0.zip
InitialHEADmaster
Diffstat (limited to 'chart/templates/hpa.yaml')
-rw-r--r--chart/templates/hpa.yaml28
1 files changed, 28 insertions, 0 deletions
diff --git a/chart/templates/hpa.yaml b/chart/templates/hpa.yaml
new file mode 100644
index 0000000..548ee03
--- /dev/null
+++ b/chart/templates/hpa.yaml
@@ -0,0 +1,28 @@
+{{- if .Values.autoscaling.enabled }}
+apiVersion: autoscaling/v2beta1
+kind: HorizontalPodAutoscaler
+metadata:
+ name: {{ include "chart.fullname" . }}
+ labels:
+ {{- include "chart.labels" . | nindent 4 }}
+spec:
+ scaleTargetRef:
+ apiVersion: apps/v1
+ kind: Deployment
+ name: {{ include "chart.fullname" . }}
+ minReplicas: {{ .Values.autoscaling.minReplicas }}
+ maxReplicas: {{ .Values.autoscaling.maxReplicas }}
+ metrics:
+ {{- if .Values.autoscaling.targetCPUUtilizationPercentage }}
+ - type: Resource
+ resource:
+ name: cpu
+ targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
+ {{- end }}
+ {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }}
+ - type: Resource
+ resource:
+ name: memory
+ targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}
+ {{- end }}
+{{- end }}