We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37ce239 commit e2983f0Copy full SHA for e2983f0
charts/emissary-ingress/templates/hpa.yaml
@@ -14,6 +14,10 @@ spec:
14
name: {{ include "ambassador.fullname" . }}
15
minReplicas: {{ .Values.autoscaling.minReplicas }}
16
maxReplicas: {{ .Values.autoscaling.maxReplicas }}
17
+ {{- with .Values.autoscaling.behavior }}
18
+ behavior:
19
+ {{- toYaml . | nindent 4 }}
20
+ {{- end }}
21
metrics:
22
{{- toYaml .Values.autoscaling.metrics | nindent 4 }}
23
{{- end }}
charts/emissary-ingress/values.yaml.in
@@ -49,6 +49,7 @@ autoscaling: # +doc-gen:break
49
enabled: false
50
minReplicas: 2
51
maxReplicas: 5
52
+ behavior: {}
53
54
- type: Resource
55
resource:
0 commit comments