95 lines
2.5 KiB
Ruby
95 lines
2.5 KiB
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
$script = <<SCRIPT
|
|
# Update apt and get dependencies
|
|
sudo apt-get update
|
|
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y unzip curl vim \
|
|
apt-transport-https \
|
|
ca-certificates \
|
|
software-properties-common
|
|
|
|
# Download Nomad
|
|
NOMAD_VERSION=0.6.0
|
|
|
|
echo "Fetching Nomad..."
|
|
cd /tmp/
|
|
curl -sSL https://releases.hashicorp.com/nomad/${NOMAD_VERSION}/nomad_${NOMAD_VERSION}_linux_amd64.zip -o nomad.zip
|
|
|
|
echo "Fetching Consul..."
|
|
curl -sSL https://releases.hashicorp.com/consul/0.8.5/consul_0.8.5_linux_amd64.zip > consul.zip
|
|
|
|
echo "Installing Nomad..."
|
|
unzip nomad.zip
|
|
sudo install nomad /usr/bin/nomad
|
|
|
|
sudo mkdir -p /etc/nomad.d
|
|
sudo chmod a+w /etc/nomad.d
|
|
|
|
# Set hostname's IP to made advertisement Just Work
|
|
#sudo sed -i -e "s/.*nomad.*/$(ip route get 1 | awk '{print $NF;exit}') nomad/" /etc/hosts
|
|
|
|
echo "Installing Docker..."
|
|
if [[ -f /etc/apt/sources.list.d/docker.list ]]; then
|
|
echo "Docker repository already installed; Skipping"
|
|
else
|
|
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
|
|
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
|
|
sudo apt-get update
|
|
fi
|
|
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y docker-ce
|
|
|
|
# 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
|
|
|
|
echo "Installing Consul..."
|
|
unzip /tmp/consul.zip
|
|
sudo install consul /usr/bin/consul
|
|
(
|
|
cat <<-EOF
|
|
[Unit]
|
|
Description=consul agent
|
|
Requires=network-online.target
|
|
After=network-online.target
|
|
|
|
[Service]
|
|
Restart=on-failure
|
|
ExecStart=/usr/bin/consul agent -dev
|
|
ExecReload=/bin/kill -HUP $MAINPID
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
) | sudo tee /etc/systemd/system/consul.service
|
|
sudo systemctl enable consul.service
|
|
sudo systemctl start consul
|
|
|
|
SCRIPT
|
|
|
|
Vagrant.configure(2) do |config|
|
|
config.vm.box = "bento/ubuntu-16.04" # 16.04 LTS
|
|
config.vm.hostname = "nomad"
|
|
config.vm.provision "shell", inline: $script, privileged: false
|
|
config.vm.provision "docker" # Just install it
|
|
|
|
# Increase memory for Parallels Desktop
|
|
config.vm.provider "parallels" do |p, o|
|
|
p.memory = "1024"
|
|
end
|
|
|
|
# Increase memory for Virtualbox
|
|
config.vm.provider "virtualbox" do |vb|
|
|
vb.memory = "1024"
|
|
end
|
|
|
|
# Increase memory for VMware
|
|
["vmware_fusion", "vmware_workstation"].each do |p|
|
|
config.vm.provider p do |v|
|
|
v.vmx["memsize"] = "1024"
|
|
end
|
|
end
|
|
end
|