We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6e2978 commit 5f73efcCopy full SHA for 5f73efc
templates/worker-deployment.yaml
@@ -28,8 +28,7 @@ spec:
28
- name: {{ .Chart.Name }}-worker
29
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
30
imagePullPolicy: {{ .Values.image.pullPolicy }}
31
- command:
32
- - {{ .Values.worker.command }}
+ args: ["{{ .Values.worker.args }}"]
33
{{- if .Values.worker.sidekiq_alive.enabled }}
34
livenessProbe:
35
httpGet:
values.yaml
@@ -34,7 +34,7 @@ readinessProbe:
timeoutSeconds: 3
worker:
36
enabled: true
37
- command: 'sidekiq' # Note: Will override entrypoint.
+ args: 'bundle exec sidekiq' # Note: Will override entrypoint.
38
replicaCount: 1
39
sidekiq_alive:
40
0 commit comments