Skip to content

Commit

Permalink
fix: polish liveness health threshold (#659)
Browse files Browse the repository at this point in the history
**Reason for Change**:
<!-- What does this PR improve or fix in Kaito? Why is it needed? -->

**Requirements**

- [ ] added unit tests and e2e tests (if applicable).

**Issue Fixed**:
<!-- If this PR fixes GitHub issue 4321, add "Fixes #4321" to the next
line. -->

Fixes #658 

**Notes for Reviewers**:

Signed-off-by: jerryzhuang <zhuangqhc@gmail.com>
  • Loading branch information
zhuangqh authored Oct 30, 2024
1 parent 6b216fc commit fc925de
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions charts/DemoUI/inference/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,19 @@ resources:
cpu: 10m
memory: 128Mi
livenessProbe:
exec:
command:
- pgrep
- chainlit
tcpSocket:
port: 8000
failureThreshold: 12
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
readinessProbe:
exec:
command:
- pgrep
- chainlit
tcpSocket:
port: 8000
failureThreshold: 12
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
nodeSelector: {}
tolerations: []
affinity: {}
Expand Down

0 comments on commit fc925de

Please sign in to comment.