Last active
March 28, 2018 03:50
-
-
Save DrSnowbird/c06c1d3b936892444532c685397bde95 to your computer and use it in GitHub Desktop.
DCOS Local cluster using Vagrant
This file contains hidden or 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 -x | |
# ref: https://github.com/dcos/dcos-vagrant | |
if [ ! -d dcos-vagrant ]; then | |
git clone https://github.com/dcos/dcos-vagrant | |
fi | |
cd dcos-vagrant | |
if [ ! -s VagrantConfig.yaml ]; then | |
cp VagrantConfig-1m-1a-1p.yaml VagrantConfig.yaml | |
fi | |
vagrant up | |
echo "Install CLI ..." | |
ci/dcos-install-cli.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment