File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
deployment/helm/charts/onyx/templates Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 52
52
name : {{ .Values.config.envConfigMapName }}
53
53
env :
54
54
{{- include "onyx-stack.envSecrets" . | nindent 12}}
55
+ startupProbe :
56
+ {{ .Values.celery_shared.startupProbe | toYaml | nindent 12}}
57
+ readinessProbe :
58
+ {{ .Values.celery_shared.readinessProbe | toYaml | nindent 12}}
59
+ exec :
60
+ command :
61
+ - /bin/bash
62
+ - -c
63
+ - >
64
+ python onyx/background/celery/celery_k8s_probe.py
65
+ --probe readiness
66
+ --filename /tmp/onyx_k8s_beat_readiness.txt
67
+ livenessProbe :
68
+ {{ .Values.celery_shared.livenessProbe | toYaml | nindent 12}}
69
+ exec :
70
+ command :
71
+ - /bin/bash
72
+ - -c
73
+ - >
74
+ python onyx/background/celery/celery_k8s_probe.py
75
+ --probe liveness
76
+ --filename /tmp/onyx_k8s_beat_liveness.txt
You can’t perform that action at this time.
0 commit comments