Skip to content

Commit ae8fd8d

Browse files
committed
Additional note on queueName for values.yaml
This was already in the docs and helm chart README, but is repeated for clarity in the blog post. Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent 70e2099 commit ae8fd8d

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

_posts/2025-07-29-queue-based-scaling.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,32 @@ At the same time, as introducing this new setting, we have deprecated an older c
220220

221221
So if you have a `queueMode` setting in your `values.yaml`, you can now safely remove it so long as you stay on a newer version of the Helm chart.
222222

223+
In the main chart, the `jetstreamQueueWorker.durableName` field is no longer used or required.
224+
225+
### Dedicated queue-workers
226+
227+
If you have dedicated queue-workers deployed, you will need to update them using the separate queue-worker Helm chart.
228+
229+
A new field is introduced called `queueName` in values.yaml, the default value is `faas-request`, so make sure you override it with the name that you are using in the `com.openfaas.queue` annotation.
230+
231+
So if you had an annotation of `com.openfaas.queue=slow-fns`, you would set the `queueName` like this in values.yaml:
232+
233+
```diff
234+
maxInflight: 5
235+
+queueName: slow-fns
236+
mode: static
237+
nats:
238+
stream:
239+
name: slow-fns-requests
240+
consumer:
241+
durableName: slow-fns-workers
242+
upstreamTimeout: 15m
243+
```
244+
245+
The top level setting `durableName` has now been removed.
246+
247+
You can read more in the [README](https://github.com/openfaas/faas-netes/blob/master/chart/queue-worker/README.md) for the queue-worker chart.
248+
223249
## Wrapping up
224250

225251
A quick summary about Queue-Based Scaling:

0 commit comments

Comments
 (0)