Skip to content

Commit 0b8b248

Browse files
committed
extend limit for genai
1 parent ff90a5d commit 0b8b248

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

infra/helm-charts/genai-backend/templates/deployment.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,18 @@ spec:
3232
httpGet:
3333
path: /health
3434
port: http
35-
initialDelaySeconds: 30
36-
periodSeconds: 10
35+
initialDelaySeconds: 1200 # 20 minutes
36+
periodSeconds: 30
37+
timeoutSeconds: 5
38+
failureThreshold: 10
3739
readinessProbe:
3840
httpGet:
3941
path: /health
4042
port: http
41-
initialDelaySeconds: 5
42-
periodSeconds: 5
43+
initialDelaySeconds: 1200 # 20 minutes
44+
periodSeconds: 30
45+
timeoutSeconds: 5
46+
failureThreshold: 10
4347
resources:
4448
limits:
4549
cpu: 500m

0 commit comments

Comments
 (0)