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
Add allowedCallbackHosts parameter for queue-worker
Allow users to restrict which hosts receive async function callbacks via
a list of glob URLs. Defaults to ["*"] for backwards compatibility
(allow all). Set to an empty list to deny all.
Signed-off-by: Han Verstraete (OpenFaaS Ltd) <han@openfaas.com>
| `jetstreamQueueWorker.logs.format` | Set the log format, supports `console` or `json` | `console` |
584
584
| `jetstreamQueueWorker.adaptiveConcurrency` | Enable adaptive concurrency limiting for functions. This setting only takes effect when `jetstreamQueueWorker.mode` is set to `function`. | `true` |
585
+
| `jetstreamQueueWorker.allowedCallbackHosts` | List of glob patterns for hosts allowed to receive async callbacks. Defaults to `["*"]` (allow all). Set to empty list `[]` to deny all | `["*"]` |
585
586
| `nats.channel` | The name of the NATS Streaming channel or NATS JetStream stream to use for asynchronous function invocations | `faas-request` |
586
587
| `nats.external.clusterName` | The name of the externally-managed NATS Streaming server | `""` |
587
588
| `nats.external.enabled` | Whether to use an externally-managed NATS Streaming server | `false` |
| `allowedCallbackHosts` | List of glob patterns for hosts allowed to receive async callbacks. Defaults to `["*"]` (allow all). Set to empty list `[]` to deny all | `["*"]` |
118
119
| `nats.host` | The host at which the NATS JetStream server can be reached | `nats.openfaas` |
119
120
| `nats.port` | The port at which the NATS JetStream server can be reached | `4222` |
120
121
| `nats.stream.name` | Name of the NATS JetStream stream to use | `faas-request` |
0 commit comments