mirror of
https://github.com/weaveworks/scope.git
synced 2026-02-14 18:09:59 +00:00
13 lines
258 B
Bash
Executable File
13 lines
258 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# shellcheck disable=SC1091
|
|
. ./config.sh
|
|
|
|
export PROJECT="${PROJECT:-scope-integration-tests}"
|
|
export TEMPLATE_NAME="${TEMPLATE_NAME:-test-template-5}"
|
|
export NUM_HOSTS=5
|
|
# shellcheck disable=SC1091
|
|
. "../tools/integration/gce.sh" "$@"
|