15 lines
498 B
YAML
15 lines
498 B
YAML
kind: HTTPScaledObject
|
|
apiVersion: http.keda.sh/v1alpha1
|
|
metadata:
|
|
name: {{ include "demo-chart.fullname" . }}
|
|
spec:
|
|
host: {{ include "demo-chart.host" . }}
|
|
targetPendingRequests: {{ .Values.targetPendingRequests }}
|
|
scaleTargetRef:
|
|
deployment: {{ include "demo-chart.fullname" . }}
|
|
service: {{ include "demo-chart.fullname" . }}
|
|
port: {{ .Values.service.port }}
|
|
replicas:
|
|
min: {{ .Values.autoscaling.http.minReplicas }}
|
|
max: {{ .Values.autoscaling.http.maxReplicas }}
|