Skip to content

Commit

Permalink
Upgrade vagrant file
Browse files Browse the repository at this point in the history
  • Loading branch information
kzaitsev committed Nov 2, 2014
1 parent b44ca14 commit 3c53a2f
Showing 1 changed file with 111 additions and 28 deletions.
139 changes: 111 additions & 28 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,37 +5,28 @@
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Drone supports 12.04 64bit and 13.04 64bit
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"

# Forward keys from SSH agent rather than copypasta
config.ssh.forward_agent = true

# FIXME: Maybe this is enough
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--memory", "2048"]
v.customize ["modifyvm", :id, "--memory", "2048"]
end

# Drone by default runs on port 80. Forward from host to guest
config.vm.network :forwarded_port, guest: 8080, host: 8080
config.vm.network :private_network, ip: "192.168.10.101"

# Sync this repo into what will be $GOPATH
config.vm.synced_folder ".", "/opt/go/src/github.com/drone/drone"

# system-level initial setup
config.vm.provision "shell", inline: <<-EOF
set -e
# System packages
echo "Installing Base Packages"
export DEBIAN_FRONTEND=noninteractive
sudo apt-get update -qq
sudo apt-get install -qqy --force-yes build-essential bzr git mercurial vim
deb_docker = <<-EOF
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
sudo sh -c 'echo deb http://get.docker.io/ubuntu docker main' > /etc/apt/sources.list.d/docker.list
sudo apt-get update
sudo apt-get install -y lxc-docker-1.3.0
EOF

go = <<-EOF
set -e
# Install Go
GOVERSION="1.3"
GOVERSION="1.3.3"
GOTARBALL="go${GOVERSION}.linux-amd64.tar.gz"
export GOROOT=/usr/local/go
export GOPATH=/opt/go
Expand Down Expand Up @@ -64,22 +55,114 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
echo "Building Drone"
cd $GOPATH/src/github.com/drone/drone
make deps
chown -R vagrant:vagrant /opt/go
# Auto cd to drone install dir
echo "cd /opt/go/src/github.com/drone/drone" >> /home/vagrant/.bashrc
EOF

# Cleanup
sudo apt-get autoremove
common = <<-EOF
npm -g install uglify-js less autoprefixer
gem install fpm --no-rdoc --no-ri
EOF

config.vm.provision "shell", inline: <<-EOF
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
sudo sh -c 'echo deb http://get.docker.io/ubuntu docker main' > /etc/apt/sources.list.d/docker.list
sudo apt-get update
sudo apt-get install -y linux-image-generic-lts-raring linux-headers-generic-lts-raring
sudo apt-get install -y lxc-docker-0.9.0
conf = <<-EOF
mkdir -p /home/vagrant/.drone/
cp -R /opt/go/src/github.com/drone/drone/packaging/root/etc/drone/drone.toml /home/vagrant/.drone/config.toml
sed -i 's;port=":80";port=":8080";g' /home/vagrant/.drone/config.toml
sed -i 's;/var/lib/drone/drone.sqlite;/opt/go/src/github.com/drone/drone/drone.sqlite;g' /home/vagrant/.drone/config.toml
EOF

config.vm.define :ubuntu, primary: true do |ubuntu|
ubuntu.vm.box = "ubuntu/trusty64"
ubuntu.vm.network :forwarded_port, guest: 8080, host: 8080
ubuntu.vm.network :private_network, ip: "192.168.10.101"
ubuntu.vm.provision "shell", inline: <<-EOF
echo "Installing Base Packages"
export DEBIAN_FRONTEND=noninteractive
sudo add-apt-repository ppa:chris-lea/node.js -y
sudo apt-get update -qq
sudo apt-get install -qqy --force-yes build-essential bzr git mercurial vim rpm zip ruby ruby-dev nodejs
EOF
ubuntu.vm.provision "shell", inline: deb_docker
ubuntu.vm.provision "shell", inline: <<-EOF
sudo apt-get install -y linux-image-generic-lts-trusty linux-headers-generic-lts-trusty
EOF
ubuntu.vm.provision "shell", inline: go
ubuntu.vm.provision "shell", inline: common
ubuntu.vm.provision "shell", inline: conf

ubuntu.vm.post_up_message = <<-EOF
Your machine is up and running
vagrant reload ubuntu
vagrant ssh ubuntu
make run
http://127.0.0.1:8080
EOF
end

config.vm.define :centos, autostart: false do |centos|
centos.vm.box = "chef/centos-7.0"
centos.vm.network :forwarded_port, guest: 8080, host: 8081
centos.vm.network :private_network, ip: "192.168.10.102"
centos.vm.provision "shell", inline: <<-EOF
curl -sL https://rpm.nodesource.com/setup | bash -
sudo yum install gcc gcc-c++ kernel-devel make bzr git mercurial vim zip ruby ruby-devel nodejs -y
sudo yum install docker -y
sudo systemctl enable docker
sudo systemctl start docker
EOF
centos.vm.provision "shell", inline: go
centos.vm.provision "shell", inline: <<-EOF
echo "export PATH=$PATH:/usr/local/bin" | sudo tee --append /etc/profile.d/ruby.sh
EOF
centos.vm.provision "shell", inline: common
centos.vm.provision "shell", inline: conf

centos.vm.post_up_message = <<-EOF
Your machine is up and running
vagrant ssh centos
make run
http://127.0.0.1:8081
EOF
end

config.vm.define :debian, autostart: false do |debian|
debian.vm.box = "chef/debian-7.7"
debian.vm.network :forwarded_port, guest: 8080, host: 8082
debian.vm.network :private_network, ip: "192.168.10.103"
debian.vm.provision "shell", inline: <<-EOF
echo "Installing Base Packages"
export DEBIAN_FRONTEND=noninteractive
sudo apt-get update -qq
sudo apt-get install -qqy --force-yes build-essential bzr git mercurial vim rpm zip ruby ruby-dev curl
sudo curl -sL https://deb.nodesource.com/setup | bash -
apt-get install -y nodejs
EOF
debian.vm.provision "shell", inline: <<-EOF
echo "deb http://http.debian.net/debian wheezy-backports main" | sudo tee --append /etc/apt/sources.list > /dev/null
sudo apt-get update -qq
sudo apt-get install -yt wheezy-backports linux-image-amd64
EOF
debian.vm.provision "shell", inline: deb_docker
debian.vm.provision "shell", inline: go
debian.vm.provision "shell", inline: common
debian.vm.provision "shell", inline: conf

debian.vm.post_up_message = <<-EOF
Your machine is up and running
vagrant ssh debian
make run
http://127.0.0.1:8082
EOF
end
end

0 comments on commit 3c53a2f

Please sign in to comment.