deploy: rollout v11 network fix
Build MCP Services / build-mcp-filesystem (push) Has been cancelled
Details
Build MCP Services / build-mcp-filesystem (push) Has been cancelled
Details
This commit is contained in:
parent
447726a59a
commit
f7039eb4f6
|
|
@ -8,6 +8,7 @@ metadata:
|
||||||
k8s.apisix.apache.org/proxy-rewrite: '{"uri": "/$1", "regex_uri": ["^/api/whisper/(.*)", "/$1"]}'
|
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-read-timeout: "120s"
|
||||||
k8s.apisix.apache.org/upstream-send-timeout: "120s"
|
k8s.apisix.apache.org/upstream-send-timeout: "120s"
|
||||||
|
k8s.apisix.apache.org/client-max-body-size: "50m"
|
||||||
spec:
|
spec:
|
||||||
ingressClassName: apisix
|
ingressClassName: apisix
|
||||||
rules:
|
rules:
|
||||||
|
|
|
||||||
|
|
@ -21,10 +21,16 @@ spec:
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
cpu: "250m"
|
cpu: "250m"
|
||||||
memory: "512Mi" # Drastically reduced to ensure scheduling
|
memory: "512Mi"
|
||||||
limits:
|
limits:
|
||||||
cpu: "1"
|
cpu: "1"
|
||||||
memory: "1Gi"
|
memory: "2Gi" # Increased for safe model loading
|
||||||
|
readinessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /health
|
||||||
|
port: 8000
|
||||||
|
initialDelaySeconds: 15
|
||||||
|
periodSeconds: 10
|
||||||
env:
|
env:
|
||||||
- name: WHISPER_MODEL
|
- name: WHISPER_MODEL
|
||||||
value: "tiny"
|
value: "tiny"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue