Merge pull request #71 from sirius0xdev/fix/rtx6000-scale-to-zero-with-cooldown

fix(rtx6000): enable scale-to-zero with 20min cooldown + wake-up route
This commit is contained in:
sirius0xdev 2026-04-29 12:10:43 -04:00 committed by GitHub
commit a742d583dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 24 additions and 1 deletions

View file

@ -19,3 +19,6 @@ spec:
crds: CreateReplace
dependsOn:
- name: keda
values:
config:
cooldownPeriod: 1200

View file

@ -13,6 +13,6 @@ spec:
service: rtx6000-brain-service
port: 8000
replicas:
min: 1
min: 0
max: 1

View file

@ -3,4 +3,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- keda-vllm.yaml
- vllm-route.yaml

View file

@ -0,0 +1,19 @@
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: rtx6000-brain-route
namespace: customer1
spec:
parentRefs:
- name: external-http-gateway
hostnames:
- brain.siriusdevops.com
rules:
- matches:
- path:
type: PathPrefix
value: /
backendRefs:
- name: rtx6000-brain-service
port: 8000