open-nomad/Vagrantfile

104 lines
3.3 KiB
Plaintext
Raw Normal View History

2015-09-11 21:58:16 +00:00
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
$script = <<SCRIPT
# Install Prereq Packages
sudo apt-get update
2015-12-18 00:45:17 +00:00
sudo apt-get install -y build-essential curl git-core mercurial bzr libpcre3-dev pkg-config zip default-jre qemu libc6-dev-i386 silversearcher-ag jq htop vim unzip
2015-09-11 21:58:16 +00:00
# Setup go, for development of Nomad
SRCROOT="/opt/go"
SRCPATH="/opt/gopath"
# Get the ARCH
ARCH=`uname -m | sed 's|i686|386|' | sed 's|x86_64|amd64|'`
# Install Go
cd /tmp
2016-02-17 23:10:28 +00:00
wget -q https://storage.googleapis.com/golang/go1.6.linux-${ARCH}.tar.gz
tar -xf go1.6.linux-${ARCH}.tar.gz
2015-09-11 21:58:16 +00:00
sudo mv go $SRCROOT
sudo chmod 775 $SRCROOT
sudo chown vagrant:vagrant $SRCROOT
# Setup the GOPATH; even though the shared folder spec gives the working
# directory the right user/group, we need to set it properly on the
# parent path to allow subsequent "go get" commands to work.
sudo mkdir -p $SRCPATH
sudo chown -R vagrant:vagrant $SRCPATH 2>/dev/null || true
# ^^ silencing errors here because we expect this to fail for the shared folder
cat <<EOF >/tmp/gopath.sh
export GOPATH="$SRCPATH"
export GOROOT="$SRCROOT"
export PATH="$SRCROOT/bin:$SRCPATH/bin:\$PATH"
EOF
sudo mv /tmp/gopath.sh /etc/profile.d/gopath.sh
sudo chmod 0755 /etc/profile.d/gopath.sh
source /etc/profile.d/gopath.sh
2015-11-25 19:57:54 +00:00
echo Fetching Consul...
cd /tmp/
2016-04-10 04:16:52 +00:00
wget https://releases.hashicorp.com/consul/0.6.4/consul_0.6.4_linux_amd64.zip -O consul.zip
2015-11-25 19:57:54 +00:00
echo Installing Consul...
unzip consul.zip
sudo chmod +x consul
sudo mv consul /usr/bin/consul
2015-09-11 21:58:16 +00:00
# Install Docker
echo deb https://apt.dockerproject.org/repo ubuntu-`lsb_release -c | awk '{print $2}'` main | sudo tee /etc/apt/sources.list.d/docker.list
sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
sudo apt-get update
sudo apt-get install -y docker-engine
2015-11-06 20:28:27 +00:00
# Restart docker to make sure we get the latest version of the daemon if there is an upgrade
sudo service docker restart
# Make sure we can actually use docker as the vagrant user
sudo usermod -aG docker vagrant
2015-09-14 15:06:12 +00:00
# Setup Nomad for development
2016-02-16 01:38:38 +00:00
cd /opt/gopath/src/github.com/hashicorp/nomad && make bootstrap
2016-03-23 19:58:38 +00:00
# Install rkt
bash scripts/install_rkt.sh
# CD into the nomad working directory when we login to the VM
grep "cd /opt/gopath/src/github.com/hashicorp/nomad" ~/.profile || echo "cd /opt/gopath/src/github.com/hashicorp/nomad" >> ~/.profile
2015-09-11 21:58:16 +00:00
SCRIPT
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "cbednarski/ubuntu-1404"
config.vm.hostname = "nomad"
config.vm.provision "shell", inline: $script, privileged: false
config.vm.synced_folder '.', '/opt/gopath/src/github.com/hashicorp/nomad'
# We're going to compile go and run a concurrent system, so give ourselves
# some extra resources. Nomad will have trouble working correctly with <2 CPUs
# so we should use at least that many.
2015-10-08 21:24:47 +00:00
cpus = 2
2015-10-28 20:53:04 +00:00
memory = 2048
config.vm.provider "parallels" do |p, o|
o.vm.box = "parallels/ubuntu-14.04"
2015-10-08 21:24:47 +00:00
p.memory = memory
p.cpus = cpus
end
2015-09-11 21:58:16 +00:00
config.vm.provider "virtualbox" do |v|
2015-10-08 21:24:47 +00:00
v.memory = memory
v.cpus = cpus
2015-09-11 21:58:16 +00:00
end
["vmware_fusion", "vmware_workstation"].each do |p|
config.vm.provider p do |v|
2015-10-08 21:24:47 +00:00
v.memory = memory
v.cpus = cpus
2015-09-11 21:58:16 +00:00
end
end
end