aboutsummaryrefslogtreecommitdiff
path: root/templates/hpa.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'templates/hpa.yaml')
-rw-r--r--templates/hpa.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/hpa.yaml b/templates/hpa.yaml
index c6fbefe..fe1f4e4 100644
--- a/templates/hpa.yaml
+++ b/templates/hpa.yaml
@@ -1,12 +1,11 @@
+---
{{- if .Values.autoscaling.enabled }}
apiVersion: autoscaling/v1
kind: HorizontalPodAutoscaler
metadata:
name: {{ template "invidious.fullname" . }}
labels:
- app: {{ template "invidious.name" . }}
- chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
- release: {{ .Release.Name }}
+ {{- include "invidious.labels" . | nindent 4 }}
spec:
scaleTargetRef:
apiVersion: apps/v1
@@ -16,3 +15,4 @@ spec:
maxReplicas: {{ .Values.autoscaling.maxReplicas }}
targetCPUUtilizationPercentage: {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
{{- end }}
+...