Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions everyrow-mcp/deploy/chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,22 +42,29 @@ spec:
type: RuntimeDefault
ports:
- containerPort: 8000
startupProbe:
httpGet:
path: /health
port: 8000
periodSeconds: 5
timeoutSeconds: 10
failureThreshold: 12
readinessProbe:
httpGet:
path: /health
port: 8000
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 5
timeoutSeconds: 10
failureThreshold: 3
livenessProbe:
httpGet:
path: /health
port: 8000
initialDelaySeconds: 10
initialDelaySeconds: 30
periodSeconds: 30
timeoutSeconds: 5
failureThreshold: 3
timeoutSeconds: 10
failureThreshold: 5
env:
{{- range $key, $value := .Values.env }}
- name: {{ $key }}
Expand Down
2 changes: 1 addition & 1 deletion everyrow-mcp/deploy/chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ secrets:
# List every Sentinel + master IP here. Use "kubectl get endpoints" or
# check REDIS_SENTINEL_ENDPOINTS to find the IPs, then narrow the CIDRs.
networkPolicy:
enabled: true
enabled: false
gatewayNamespace: gke-managed-system
redisPort: 6379
redisSentinelPort: 26379
Expand Down