Skip to content
Snippets Groups Projects
Commit 13906217 authored by Alex Ellis's avatar Alex Ellis
Browse files

Bump compose to use gateway_invoke for nats-queue-worker


This change means the gateway is used to invoke functions
asynchronously rather than directly so that the scale from zero
path can execute.

Signed-off-by: default avatarAlex Ellis <alexellis2@gmail.com>
parent 681d8841
No related branches found
No related tags found
No related merge requests found
......@@ -52,6 +52,8 @@ services:
DOCKER_API_VERSION: "1.30"
basic_auth: "${BASIC_AUTH:-true}"
secret_mount_path: "/run/secrets/"
gateway_invoke: "true"
faas_gateway_address: "gateway"
deploy:
placement:
constraints:
......
......@@ -100,6 +100,8 @@ services:
ack_wait: "5m5s" # Max duration of any async task / request
basic_auth: "${BASIC_AUTH:-true}"
secret_mount_path: "/run/secrets/"
gateway_invoke: "true"
faas_gateway_address: "gateway"
deploy:
resources:
limits:
......
......@@ -92,7 +92,7 @@ services:
- "node.platform.os == linux"
queue-worker:
image: openfaas/queue-worker:0.7.1
image: openfaas/queue-worker:0.7.2
networks:
- functions
environment:
......@@ -100,6 +100,8 @@ services:
ack_wait: "5m5s" # Max duration of any async task / request
basic_auth: "${BASIC_AUTH:-true}"
secret_mount_path: "/run/secrets/"
gateway_invoke: "true"
faas_gateway_address: "gateway"
deploy:
resources:
limits:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment