talos/hack/test/basic-integration.sh
Spencer Smith 38dfddbab3 feat: break up osctl cluster create and basic/e2e tests
This PR will break cluster create apart from the other steps in
integration tests. It will allow us to run the cluster create, then use
it for parallel e2e builds in different cloud environments.

Signed-off-by: Spencer Smith <robertspencersmith@gmail.com>
2019-08-01 10:55:24 -04:00

15 lines
147 B
Bash
Executable File

#!/bin/bash
set -eou pipefail
export TMP="/tmp/e2e"
cleanup() {
rm -rf ${TMP}
}
trap cleanup EXIT
./hack/test/osctl-cluster-create.sh
exit 0