Created
June 5, 2017 15:53
-
-
Save tscolari/6cd2456c4af9e9c0e90607155d12a2c6 to your computer and use it in GitHub Desktop.
Vizzini
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -l | |
set -x | |
EXITSTATUS=0 | |
bbs_sec_flags=" \ | |
--bbs-client-cert=./client.crt \ | |
--bbs-client-key=./client.key" | |
bbs_api_url="https://10.0.31.21:8889" | |
nodes=4 | |
verbose=false | |
routable_domain_suffix=grootfs-thanos.cf-app.com | |
ssh_proxy_address=10.0.31.27:2222 | |
ssh_proxy_secret_flag="--ssh-password=eu2ork0k83y8xo2joi7w" | |
ginkgo \ | |
-nodes=${nodes} \ | |
-v=${verbose} \ | |
-randomizeAllSpecs \ | |
-progress \ | |
-trace \ | |
-keepGoing \ | |
-- \ | |
${bbs_sec_flags} \ | |
--bbs-address=${bbs_api_url} \ | |
--ssh-address=${ssh_proxy_address} \ | |
\ | |
--rep-placement-tags=shed \ | |
\ | |
${ssh_proxy_secret_flag} \ | |
--routable-domain-suffix=${routable_domain_suffix} | |
echo "Vizzini Complete; exit status: $EXITSTATUS" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment