-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVagrantfile
132 lines (122 loc) · 4.7 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# -*- mode: ruby -*-
# vi: set ft=ruby :
$script_ci = <<SCRIPT
echo Provisioning VM...
echo Installing dependencies...
apt-get update
apt-get -qy install git openjdk-7-jdk sshpass unzip
wget -O /home/vagrant/jenkins.war http://mirrors.jenkins-ci.org/war/latest/jenkins.war
wget -O /home/vagrant/artifactory.zip http://bit.ly/Hqv9aj
unzip /home/vagrant/artifactory.zip
chown -R vagrant:vagrant /home/vagrant/artifactory-*
echo Done.
SCRIPT
$script_lb = <<SCRIPT
echo Provisioning VM...
echo Installing dependencies...
apt-get update
apt-get -qy install haproxy
echo Configuring haproxy...
echo >> /etc/haproxy/haproxy.cfg
echo "frontend http-in" >> /etc/haproxy/haproxy.cfg
echo " bind *:9000" >> /etc/haproxy/haproxy.cfg
echo " default_backend servers" >> /etc/haproxy/haproxy.cfg
echo >> /etc/haproxy/haproxy.cfg
echo "backend servers" >> /etc/haproxy/haproxy.cfg
echo " stats enable" >> /etc/haproxy/haproxy.cfg
echo " retries 3" >> /etc/haproxy/haproxy.cfg
echo " option redispatch" >> /etc/haproxy/haproxy.cfg
echo " option httpchk" >> /etc/haproxy/haproxy.cfg
echo " option forwardfor" >> /etc/haproxy/haproxy.cfg
echo " option http-server-close" >> /etc/haproxy/haproxy.cfg
echo " server app1 10.0.2.2:9101 check inter 1000" >> /etc/haproxy/haproxy.cfg
echo " server app2 10.0.2.2:9102 check inter 1000" >> /etc/haproxy/haproxy.cfg
echo "ENABLED=1" > /etc/default/haproxy
service haproxy restart
echo Done.
SCRIPT
$script_app = <<SCRIPT
echo Provisioning VM...
echo Installing dependencies...
apt-get update
apt-get -qy install openjdk-7-jre-headless
echo Done.
SCRIPT
$script_db = <<SCRIPT
echo Provisioning VM...
echo Installing dependencies...
apt-get update
apt-get -qy install openjdk-7-jre-headless
wget -O /home/vagrant/hsqldb.jar http://search.maven.org/remotecontent?filepath=org/hsqldb/hsqldb/2.3.1/hsqldb-2.3.1.jar
echo Done.
SCRIPT
Vagrant.configure("2") do |config|
# Supports local cache, don't wast bandwitdh
# vagrant plugin install vagrant-cachier
# https://github.com/fgrehm/vagrant-cachier
if Vagrant.has_plugin?("vagrant-cachier")
config.cache.auto_detect = true
end
config.vm.box = "saucy-server-cloudimg-amd64"
config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/saucy/current/saucy-server-cloudimg-amd64-vagrant-disk1.box"
config.vm.define "ci" do |ci|
ci.vm.hostname = "cdzero2hero-ci"
ci.vm.provision :shell, :inline => $script_ci
ci.vm.network "forwarded_port", guest: 22, host: 8022
ci.vm.network "forwarded_port", guest: 8080, host: 8080
ci.vm.network "forwarded_port", guest: 8081, host: 8081
ci.vm.provider "virtualbox" do |vm|
vm.customize [
'modifyvm', :id,
'--memory', '2048',
'--cpus', '2',
]
end
end
config.vm.define "lb" do |lb|
lb.vm.hostname = "cdzero2hero-lb"
lb.vm.provision :shell, :inline => $script_lb
lb.vm.network "forwarded_port", guest: 9000, host: 9000
lb.vm.provider "virtualbox" do |vm|
vm.customize [
'modifyvm', :id,
'--memory', '512'
]
end
end
config.vm.define "app1" do |app1|
app1.vm.hostname = "cdzero2hero-app1"
app1.vm.provision :shell, :inline => $script_app
app1.vm.network "forwarded_port", guest: 22, host: 9111
app1.vm.network "forwarded_port", guest: 9100, host: 9101
app1.vm.provider "virtualbox" do |vm|
vm.customize [
'modifyvm', :id,
'--memory', '512'
]
end
end
config.vm.define "app2" do |app2|
app2.vm.hostname = "cdzero2hero-app2"
app2.vm.provision :shell, :inline => $script_app
app2.vm.network "forwarded_port", guest: 22, host: 9112
app2.vm.network "forwarded_port", guest: 9100, host: 9102
app2.vm.provider "virtualbox" do |vm|
vm.customize [
'modifyvm', :id,
'--memory', '512'
]
end
end
config.vm.define "db" do |db|
db.vm.hostname = "cdzero2hero-db"
db.vm.provision :shell, :inline => $script_db
db.vm.network "forwarded_port", guest: 9200, host: 9200
db.vm.provider "virtualbox" do |vm|
vm.customize [
'modifyvm', :id,
'--memory', '512'
]
end
end
end