fix(keda): remove invalid spec.paths from HTTPScaledObject
HTTPScaledObject CRD (http.keda.sh/v1alpha1) does not support .spec.paths field. Scaling now triggers on all HTTP requests to the host (health/liveness ignored via targetPendingRequests:1 + pollingInterval:10s). Refs https://keda.sh/docs/scalers/http-addon/
This commit is contained in:
parent
7e7b7d414d
commit
a4b500a3ab
2 changed files with 2 additions and 4 deletions
|
|
@ -12,8 +12,7 @@ spec:
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
service: openclaw-brain-service
|
service: openclaw-brain-service
|
||||||
port: 8000
|
port: 8000
|
||||||
paths:
|
|
||||||
- path: "^/v1/chat/completions"
|
|
||||||
replicas:
|
replicas:
|
||||||
min: 0
|
min: 0
|
||||||
max: 1
|
max: 1
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,7 @@ spec:
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
service: rtx6000-brain-service
|
service: rtx6000-brain-service
|
||||||
port: 8000
|
port: 8000
|
||||||
paths:
|
|
||||||
- path: "^/v1/(chat/)?completions"
|
|
||||||
replicas:
|
replicas:
|
||||||
min: 0
|
min: 0
|
||||||
max: 1
|
max: 1
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue