Skip to content

Commit

Permalink
fix(celery): add timeout 5s to ping cmd of liveness probes
Browse files Browse the repository at this point in the history
  • Loading branch information
hbollon committed Jun 24, 2024
1 parent fbb2816 commit f7a263e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
description: A Helm chart for deploying MerginMaps on Kubernetes
name: merginmaps
version: 0.2.5
version: 0.2.6
home: https://merginmaps.com/
sources:
- https://github.com/MerginMaps/mergin
Expand Down
4 changes: 2 additions & 2 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ server:
command:
- sh
- '-c'
- celery -A application.celery inspect ping | grep -q OK
- celery -A application.celery inspect ping --timeout 5 | grep -q OK
failureThreshold: 3
initialDelaySeconds: 30
periodSeconds: 15
Expand All @@ -233,7 +233,7 @@ server:
command:
- sh
- '-c'
- celery -A application.celery inspect ping | grep -q OK
- celery -A application.celery inspect ping --timeout 5 | grep -q OK
failureThreshold: 3
initialDelaySeconds: 30
periodSeconds: 15
Expand Down

0 comments on commit f7a263e

Please # to comment.