Skip to content

Instantly share code, notes, and snippets.

@DrSnowbird
Last active March 28, 2018 03:50
Show Gist options
  • Save DrSnowbird/c06c1d3b936892444532c685397bde95 to your computer and use it in GitHub Desktop.
Save DrSnowbird/c06c1d3b936892444532c685397bde95 to your computer and use it in GitHub Desktop.
DCOS Local cluster using Vagrant
#!/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