From d64edeb648c4d6510a55a9e2ae20d497a86d0d4d Mon Sep 17 00:00:00 2001 From: Xin Yang Date: Wed, 27 May 2020 21:50:47 +0800 Subject: [PATCH] Update OpenFaaS core components for faasd basic-auth-plugin: 0.18.10 -> 0.18.17 gateway: 0.18.8 -> 0.18.17 queue-worker: 0.9.0 -> 0.11.2 Signed-off-by: Hsiny --- cmd/up.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/up.go b/cmd/up.go index 590cf81..ffbac0b 100644 --- a/cmd/up.go +++ b/cmd/up.go @@ -175,7 +175,7 @@ func makeServiceDefinitions(archSuffix string) []pkg.Service { return []pkg.Service{ { Name: "basic-auth-plugin", - Image: "docker.io/openfaas/basic-auth-plugin:0.18.10" + archSuffix, + Image: "docker.io/openfaas/basic-auth-plugin:0.18.17" + archSuffix, Env: []string{ "port=8080", "secret_mount_path=" + containerSecretMountDir, @@ -230,7 +230,7 @@ func makeServiceDefinitions(archSuffix string) []pkg.Service { "secret_mount_path=" + containerSecretMountDir, "scale_from_zero=true", }, - Image: "docker.io/openfaas/gateway:0.18.8" + archSuffix, + Image: "docker.io/openfaas/gateway:0.18.17" + archSuffix, Mounts: []pkg.Mount{ { Src: path.Join(path.Join(wd, "secrets"), "basic-auth-password"), @@ -256,7 +256,7 @@ func makeServiceDefinitions(archSuffix string) []pkg.Service { "basic_auth=true", "secret_mount_path=" + containerSecretMountDir, }, - Image: "docker.io/openfaas/queue-worker:0.9.0", + Image: "docker.io/openfaas/queue-worker:0.11.2", Mounts: []pkg.Mount{ { Src: path.Join(path.Join(wd, "secrets"), "basic-auth-password"),