Update dependencies
Allow for more flexible worker liveness probe
This commit is contained in:
parent
6030aa42d6
commit
837b05a987
|
@ -1,9 +1,9 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
version: 12.3.1
|
version: 12.5.2
|
||||||
- name: redis
|
- name: redis
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
version: 17.9.5
|
version: 17.11.2
|
||||||
digest: sha256:ae553a8fd4c534dfc568f711400449783b614f2ef13b6ca3feb3b446ffca2ab3
|
digest: sha256:a79340fa64c0b779984ecc3f7402527a1b420b0e850e535c40223b29373d2b90
|
||||||
generated: "2023-04-22T21:00:15.99152284-04:00"
|
generated: "2023-05-19T10:42:24.212547236-04:00"
|
||||||
|
|
|
@ -14,7 +14,7 @@ type: application
|
||||||
|
|
||||||
# This is the chart version. This version number should be incremented each time you make changes
|
# This is the chart version. This version number should be incremented each time you make changes
|
||||||
# to the chart and its templates, including the app version.
|
# to the chart and its templates, including the app version.
|
||||||
version: 2.3.2
|
version: 2.3.3
|
||||||
|
|
||||||
# This is the version number of the application being deployed. This version number should be
|
# This is the version number of the application being deployed. This version number should be
|
||||||
# incremented each time you make changes to the application.
|
# incremented each time you make changes to the application.
|
||||||
|
|
Binary file not shown.
BIN
charts/postgresql-12.5.2.tgz
Normal file
BIN
charts/postgresql-12.5.2.tgz
Normal file
Binary file not shown.
BIN
charts/redis-17.11.2.tgz
Normal file
BIN
charts/redis-17.11.2.tgz
Normal file
Binary file not shown.
Binary file not shown.
|
@ -1 +1 @@
|
||||||
Subproject commit 466648631f63004b665ef8be701532af2a50a401
|
Subproject commit 3099e678fcf3c32e7218e6fcf9ecbfe3203a5411
|
11
values.yaml
11
values.yaml
|
@ -92,15 +92,14 @@ worker:
|
||||||
targetCPU: 100
|
targetCPU: 100
|
||||||
# targetMemory: 80
|
# targetMemory: 80
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
enabled: true
|
|
||||||
initialDelaySeconds: 10
|
initialDelaySeconds: 10
|
||||||
periodSeconds: 60
|
periodSeconds: 60
|
||||||
timeoutSeconds: 30
|
timeoutSeconds: 30
|
||||||
command:
|
exec:
|
||||||
- /bin/sh
|
command:
|
||||||
- -c
|
- "bash"
|
||||||
- exec
|
- "-c"
|
||||||
- celery -A glitchtip inspect ping -d celery@$HOSTNAME | grep -q OK
|
- "celery -A glitchtip inspect ping -d celery@$HOSTNAME | grep -q OK"
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpu: 900m
|
cpu: 900m
|
||||||
|
|
Loading…
Reference in a new issue