You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: deployment/kubernetes.md
+30Lines changed: 30 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -96,3 +96,33 @@ We noticed that some tiller RBAC trouble occurred. You can usually resolve it by
96
96
97
97
Please, see the [related issue](https://github.com/kubernetes/helm/issues/3130) for further details / information.
98
98
You can also take a look at the [related documentation](https://github.com/kubernetes/helm/blob/master/docs/rbac.md)
99
+
100
+
## Symfony Messenger
101
+
102
+
Running Pods with the Messenger Component to consume queues requires additions to the Helm chart.
103
+
104
+
Start by creating a new template for the queue-worker-deployment. The `deployment.yaml` can be used as template, the caddy container and all unused ENV variables should be removed.
105
+
106
+
Add the following lines under `containers` to overwrite the command.
107
+
108
+
command:
109
+
{{ range .Values.queue_worker.command }}
110
+
- {{ . | quote }}
111
+
{{ end }}
112
+
args:
113
+
{{ range .Values.queue_worker.commandArgs }}
114
+
- {{ . | quote }}
115
+
{{ end }}
116
+
117
+
Here is an example on how to use it from your `values.yaml`:
0 commit comments