mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-05-06 00:46:56 +00:00
Autopilot can now continue when errors happen, and it writes success/failure of each snippet in a log file for later review. Also added e2e.sh to provision a test environment and start the remote tmux instance.
11 lines
325 B
Bash
Executable File
11 lines
325 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
TAG=$(./workshopctl maketag)
|
|
./workshopctl start --settings settings/jerome.yaml --infra infra/aws-eu-central-1 --tag $TAG
|
|
./workshopctl deploy $TAG
|
|
./workshopctl kube $TAG
|
|
./workshopctl helmprom $TAG
|
|
while ! ./workshopctl kubetest $TAG; do sleep 1; done
|
|
./workshopctl tmux $TAG
|
|
echo ./workshopctl stop $TAG
|