From f7d401684665f9cbc5b213e1232870d67a7c846b Mon Sep 17 00:00:00 2001 From: Rajat Jindal Date: Tue, 2 Apr 2024 14:10:15 +0530 Subject: [PATCH] build image for multi trigger app Signed-off-by: Rajat Jindal --- scripts/up.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/up.sh b/scripts/up.sh index eff98d14..c42d5982 100755 --- a/scripts/up.sh +++ b/scripts/up.sh @@ -5,9 +5,9 @@ set -euo pipefail cluster_name="test-cluster" # name of the k3d cluster dockerfile_path="deployments/k3d" # path to the Dockerfile -DOCKER_IMAGES=("spin" "spin-keyvalue" "spin-outbound-redis") -OUT_DIRS=("test/out_spin" "test/out_spin_keyvalue" "test/out_spin_outbound_redis") -IMAGES=("spin-hello-world" "spin-keyvalue" "spin-outbound-redis") +DOCKER_IMAGES=("spin" "spin-keyvalue" "spin-outbound-redis", "spin-multi-trigger-app") +OUT_DIRS=("test/out_spin" "test/out_spin_keyvalue" "test/out_spin_outbound_redis", "test/out_spin_multi_trigger_app") +IMAGES=("spin-hello-world" "spin-keyvalue" "spin-outbound-redis", "spin-multi-trigger-app") # build the Docker image for the k3d cluster docker build -t k3d-shim-test "$dockerfile_path"