deploy: rollout Whisper API and v7 scribe
Build MCP Services / build-mcp-filesystem (push) Has been cancelled Details

This commit is contained in:
Antigravity 2026-05-15 00:05:10 -04:00
parent 3f9939f7d5
commit d0f440f491
1 changed files with 42 additions and 0 deletions

42
curio/k8s/whisper.yaml Normal file
View File

@ -0,0 +1,42 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: whisper-api
namespace: curio
spec:
replicas: 1
selector:
matchLabels:
app: whisper-api
template:
metadata:
labels:
app: whisper-api
spec:
containers:
- name: whisper
image: fedirzh/faster-whisper-server:latest
ports:
- containerPort: 8000
resources:
requests:
cpu: "1"
memory: "2Gi"
limits:
cpu: "2"
memory: "4Gi"
env:
- name: WHISPER_MODEL
value: "base" # Optimized for speed and Indian languages
---
apiVersion: v1
kind: Service
metadata:
name: whisper-api
namespace: curio
spec:
selector:
app: whisper-api
ports:
- port: 80
targetPort: 8000