EOX GitLab Instance

Skip to content
Snippets Groups Projects
Commit c1fbb0ce authored by Bernhard Mallinger's avatar Bernhard Mallinger
Browse files

Add optional HorizontalPodAutoscaler to renderer chart

parent b7197771
No related branches found
No related tags found
No related merge requests found
Pipeline #20962 passed
{{ if .Values.hpa.enabled }}
apiVersion: autoscaling/v2beta2
kind: HorizontalPodAutoscaler
metadata:
name: vs-renderer
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: vs-renderer
minReplicas: {{ .Values.hpa.minReplicas }}
maxReplicas: {{ .Values.hpa.maxReplicas }}
metrics:
- type: Resource
resource:
name: cpu
target:
type: Utilization
averageUtilization: 100
{{ end }}
replicaCount: 1
nameOverride:
fullNameOverride:
......@@ -19,6 +18,12 @@ livenessProbe:
imagePullSecrets: []
replicaCount: 1
hpa:
enabled: false
minReplicas: 1
maxReplicas: 3
service:
type: ClusterIP
port: 80
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment