Skip to content

Commit

Permalink
command
Browse files Browse the repository at this point in the history
  • Loading branch information
WillNilges committed Aug 11, 2024
1 parent f05093e commit c5070d5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion infra/helm/meshdb/charts/celery/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ spec:
imagePullPolicy: {{ $.Values.image.pullPolicy }}
resources:
{{- toYaml $.Values.resources | nindent 12 }}
entrypoint: {{ .entrypoint }}
command: {{ .command }}
envFrom:
- configMapRef:
name: meshdbconfig
Expand Down
10 changes: 8 additions & 2 deletions infra/helm/meshdb/charts/celery/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,15 @@ resources:

containers:
- name: celery-beat
entrypoint: ./celery_beat.sh
command:
- sh
- -c
- ./celery_beat.sh
- name: celery-worker
entrypoint: ./celery_worker.sh
command:
- sh
- -c
- ./celery_worker.sh

# TODO (willnilges): Come up with some clever liveness probe
#livenessProbe:
Expand Down

0 comments on commit c5070d5

Please sign in to comment.