Upgrade vagrant file

This commit is contained in:
Kirill Zaitsev 2014-11-02 22:59:58 +03:00
parent b44ca14fb7
commit 3c53a2f5ae

141
Vagrantfile vendored
View file

@ -5,37 +5,28 @@
VAGRANTFILE_API_VERSION = "2" VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| 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 # Forward keys from SSH agent rather than copypasta
config.ssh.forward_agent = true config.ssh.forward_agent = true
# FIXME: Maybe this is enough # FIXME: Maybe this is enough
config.vm.provider "virtualbox" do |v| config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--memory", "2048"] v.customize ["modifyvm", :id, "--memory", "2048"]
end 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 # Sync this repo into what will be $GOPATH
config.vm.synced_folder ".", "/opt/go/src/github.com/drone/drone" config.vm.synced_folder ".", "/opt/go/src/github.com/drone/drone"
# system-level initial setup deb_docker = <<-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 lxc-docker-1.3.0
EOF
go = <<-EOF
set -e 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
# Install Go # Install Go
GOVERSION="1.3" GOVERSION="1.3.3"
GOTARBALL="go${GOVERSION}.linux-amd64.tar.gz" GOTARBALL="go${GOVERSION}.linux-amd64.tar.gz"
export GOROOT=/usr/local/go export GOROOT=/usr/local/go
export GOPATH=/opt/go export GOPATH=/opt/go
@ -64,22 +55,114 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
echo "Building Drone" echo "Building Drone"
cd $GOPATH/src/github.com/drone/drone cd $GOPATH/src/github.com/drone/drone
make deps make deps
chown -R vagrant:vagrant /opt/go
# Auto cd to drone install dir # Auto cd to drone install dir
echo "cd /opt/go/src/github.com/drone/drone" >> /home/vagrant/.bashrc echo "cd /opt/go/src/github.com/drone/drone" >> /home/vagrant/.bashrc
# Cleanup
sudo apt-get autoremove
EOF EOF
config.vm.provision "shell", inline: <<-EOF common = <<-EOF
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9 npm -g install uglify-js less autoprefixer
sudo sh -c 'echo deb http://get.docker.io/ubuntu docker main' > /etc/apt/sources.list.d/docker.list gem install fpm --no-rdoc --no-ri
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
EOF EOF
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 end