deploy: rollout v10 stability fix
Build MCP Services / build-mcp-filesystem (push) Has been cancelled Details

This commit is contained in:
Antigravity 2026-05-15 00:37:58 -04:00
parent b12e4f781c
commit b0165b80f9
2 changed files with 9 additions and 8 deletions

View File

@ -5,8 +5,9 @@ metadata:
namespace: curio
annotations:
k8s.apisix.apache.org/enable-websocket: "true"
k8s.apisix.apache.org/proxy-rewrite: '{"regex_report": ["/api/whisper/(.*)", "/$1"]}'
k8s.apisix.apache.org/upstream-read-timeout: "60s"
k8s.apisix.apache.org/proxy-rewrite: '{"uri": "/$1", "regex_uri": ["^/api/whisper/(.*)", "/$1"]}'
k8s.apisix.apache.org/upstream-read-timeout: "120s"
k8s.apisix.apache.org/upstream-send-timeout: "120s"
spec:
ingressClassName: apisix
rules:

View File

@ -15,19 +15,19 @@ spec:
spec:
containers:
- name: whisper
image: fedirzh/faster-whisper-server:latest
image: fedirzh/faster-whisper-server:latest-cpu # Force CPU mode for cluster stability
ports:
- containerPort: 8000
resources:
requests:
cpu: "1"
memory: "2Gi"
cpu: "250m"
memory: "512Mi" # Drastically reduced to ensure scheduling
limits:
cpu: "2"
memory: "4Gi"
cpu: "1"
memory: "1Gi"
env:
- name: WHISPER_MODEL
value: "tiny" # Faster startup, lightweight
value: "tiny"
- name: WHISPER_TASK
value: "transcribe"
---