diff --git a/infra/helm/meshdb/charts/celery/templates/deployment.yaml b/infra/helm/meshdb/charts/celery/templates/deployment.yaml index 9d4dd966..bcadb6e3 100644 --- a/infra/helm/meshdb/charts/celery/templates/deployment.yaml +++ b/infra/helm/meshdb/charts/celery/templates/deployment.yaml @@ -39,7 +39,7 @@ spec: imagePullPolicy: {{ $.Values.image.pullPolicy }} resources: {{- toYaml $.Values.resources | nindent 12 }} - entrypoint: {{ .entrypoint }} + command: {{ .command }} envFrom: - configMapRef: name: meshdbconfig diff --git a/infra/helm/meshdb/charts/celery/values.yaml b/infra/helm/meshdb/charts/celery/values.yaml index 7098a1ca..54d8eb4e 100644 --- a/infra/helm/meshdb/charts/celery/values.yaml +++ b/infra/helm/meshdb/charts/celery/values.yaml @@ -38,9 +38,11 @@ resources: containers: - name: celery-beat - entrypoint: ./celery_beat.sh + command: + - ./celery_beat.sh - name: celery-worker - entrypoint: ./celery_worker.sh + command: + - ./celery_worker.sh # TODO (willnilges): Come up with some clever liveness probe #livenessProbe: