We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 43f0833 + df2c761 commit b285746Copy full SHA for b285746
5 files changed
contrib/vagrant/rigger/check.sh
contrib/vagrant/rigger/config.sh
@@ -0,0 +1,2 @@
1
+SUGGEST_DEIS_TEST_DOMAIN="local3.deisapp.com"
2
+SUGGEST_DEIS_SSH_KEY="${HOME}/.vagrant.d/insecure_private_key"
contrib/vagrant/rigger/create.sh
@@ -0,0 +1,7 @@
+(
+ cd ${DEIS_ROOT}
3
+ vagrant up --provider virtualbox
4
+)
5
+
6
+export DEISCTL_TUNNEL="${DEISCTL_TUNNEL:-127.0.0.1:2222}"
7
+save-var DEISCTL_TUNNEL
contrib/vagrant/rigger/destroy.sh
@@ -0,0 +1,9 @@
+function _destroy-all-vagrants {
+ VMS=$(vagrant global-status | grep deis | awk '{ print $5 }')
+ for dir in $VMS; do
+ cd ${dir} && vagrant destroy --force
+ done
+}
8
+rerun_log "Destroying Vagrant cluster..."
9
+_destroy-all-vagrants
contrib/vagrant/rigger/install.sh
0 commit comments