mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-26 00:51:11 +02:00
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>
15 lines
147 B
Bash
Executable File
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
|