Skip to content

Instantly share code, notes, and snippets.

@tscolari
Created June 5, 2017 15:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tscolari/6cd2456c4af9e9c0e90607155d12a2c6 to your computer and use it in GitHub Desktop.
Save tscolari/6cd2456c4af9e9c0e90607155d12a2c6 to your computer and use it in GitHub Desktop.
Vizzini
#!/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