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"