Skip to content

Commit

Permalink
fix(probes): use celery hostname instead of app name
Browse files Browse the repository at this point in the history
  • Loading branch information
hbollon committed Jun 25, 2024
1 parent e46e000 commit 787d6ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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.7
version: 0.2.8
home: https://merginmaps.com/
sources:
- https://github.com/MerginMaps/mergin
Expand Down
8 changes: 4 additions & 4 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,9 @@ server:
command:
- sh
- '-c'
- celery -A application.celery inspect ping --timeout 10 | grep -q OK
- celery inspect ping -d celery@$(hostname) --timeout 10 | grep -q OK
failureThreshold: 3
initialDelaySeconds: 30
initialDelaySeconds: 60
periodSeconds: 30
successThreshold: 1
timeoutSeconds: 10
Expand All @@ -233,9 +233,9 @@ server:
command:
- sh
- '-c'
- celery -A application.celery inspect ping --timeout 10 | grep -q OK
- celery inspect ping -d celery@$(hostname) --timeout 10 | grep -q OK
failureThreshold: 3
initialDelaySeconds: 30
initialDelaySeconds: 60
periodSeconds: 30
successThreshold: 1
timeoutSeconds: 10
Expand Down

0 comments on commit 787d6ff

Please # to comment.