forked from performancecopilot/pcp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Vagrantfile
248 lines (218 loc) · 8.59 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Leave this alone
VAGRANTFILE_API_VERSION = "2"
# General VM Parameters - 8Gb and 4CPUs
VM_MEM = "8192"
VM_CPU = "4"
if ENV.has_key?("PCP_VAGRANT_MODE")
pcp_mode = ENV['PCP_VAGRANT_MODE']
else
pcp_mode = "qa"
end
def qa_groups
if ENV.has_key?("PCP_QA_GROUPS")
return ENV['PCP_QA_GROUPS']
else
return "-g sanity -g pmda.linux -x flakey"
end
end
# to be used for determining groups to test
# based on the git diff
def change_range
if ENV.has_key?("PCP_CHANGE_RANGE")
return ENV['PCP_CHANGE_RANGE']
else
return ""
end
end
#env['PCP_CHANGE_RANGE']
############################################################
# Host Definititions
############################################################
pcp_hosts = {
:fedora30 => {
:hostname => "fedora30",
:ipaddress => "10.100.10.25",
:box => "fedora/30-cloud-base",
:script => "fedora.sh",
:qa => "-g sanity -g pmda.linux -x flakey",
:distro_name => "f30"
},
:ubuntu1804 => {
:hostname => "ubuntu1804",
:ipaddress => "10.100.10.24",
:box => "performancecopilot/ubuntu1804",
:script => "ubuntu.sh",
:qa => "-g sanity -g pmda.linux -x flakey",
:distro_name => "bionic"
},
:ubuntu1604 => {
:hostname => "ubuntu1604",
:ipaddress => "10.100.10.23",
:box => "performancecopilot/ubuntu1604",
:script => "ubuntu.sh",
:qa => "-g sanity -g pmda.linux -x flakey",
:distro_name => "xenial"
},
:centos7 => {
:hostname => "centos7",
:ipaddress => "10.100.10.20",
:box => "centos/7",
:script => "centos.sh",
:qa => "-g sanity -g pmda.linux -x flakey",
:distro_name => "el7"
},
:centos6 => {
:hostname => "centos6",
:ipaddress => "10.100.10.19",
:box => "centos/6",
:script => "centos.sh",
:qa => "-g sanity -g pmda.linux -x flakey",
:distro_name => "el6"
},
:fedora29 => {
:hostname => "fedora29",
:ipaddress => "10.100.10.18",
:box => "fedora/29-cloud-base",
:script => "fedora.sh",
:qa => "-g sanity -g pmda.linux -x flakey",
:distro_name => "f29"
},
:fedora28 => {
:hostname => "fedora28",
:ipaddress => "10.100.10.17",
:box => "fedora/28-cloud-base",
:script => "fedora.sh",
:qa => "-g sanity -g pmda.linux -x flakey",
:distro_name => "f28"
},
:debian9 => {
:hostname => "debian9",
:ipaddress => "10.100.10.14",
:box => "generic/debian9",
:script => "debian.sh",
:qa => "-g sanity -g pmda.linux -x flakey",
:distro_name => "stretch"
},
:debian8 => {
:hostname => "debian8",
:ipaddress => "10.100.10.13",
:box => "performancecopilot/debian8",
:script => "debian.sh",
:qa => "-g sanity -g pmda.linux -x flakey",
:distro_name => "jessie"
},
:freebsd12 => {
:hostname => "freebsd12",
:ipaddress => "10.100.10.11",
:box => "generic/openbsd12",
:script => "openbsd.sh",
:qa => "-g sanity -x flakey",
:distro_name => "freebsd12"
},
:freebsd11 => {
:hostname => "freebsd11",
:ipaddress => "10.100.10.10",
:box => "generic/freebsd11",
:script => "openbsd.sh",
:qa => "-g sanity -x flakey",
:distro_name => "freebsd11"
},
:openbsd6 => {
:hostname => "openbsd6",
:ipaddress => "10.100.10.9",
:box => "generic/openbsd6",
:script => "openbsd.sh",
:qa => "-g sanity -x flakey",
:distro_name => "openbsd6"
},
:opensuse42 => {
:hostname => "opensuse42",
:ipaddress => "10.100.10.8",
:box => "generic/opensuse42",
:script => "opensuse.sh",
:qa => "-g sanity -g pmda.linux -x flakey",
:distro_name => "opensuse42"
}
}
EXPECTED_PLATFORM="darwin"
EXPECTED_ACK_FILE="provisioning/osxsierra.legally.ok"
platform_ok_to_use_OSX=RUBY_PLATFORM.include?(EXPECTED_PLATFORM)
eula_acknowledged = File.exists?(EXPECTED_ACK_FILE)
ok_to_use_OSX = platform_ok_to_use_OSX && eula_acknowledged
############################################################
# Only allowed to use oxssierra image if the underlying platform
# is a Mac and that the user has checked
#
# see OSXREADME.md for more details
############################################################
if(ok_to_use_OSX)
pcp_hosts[:osxsierra]={
:hostname => "osxSierra",
:ipaddress => "10.100.10.60",
# https://github.com/AndrewDryga/vagrant-box-osx
# TODO - this base image takes flipping ages to provision
# due to PCP dependencies that need to be built by
# Homebrew (eg. qt5, gettext)
# it would be better to have a base image based off this
# box that has these pre-installed
:box => "http://files.dryga.com/boxes/osx-sierra-0.3.1.box",
:script => "osxsierra.sh"
}
end
############################################################
# Common Config Setup, hostnames, etc
# So VMs could talk to each other if we wanted
############################################################
$script_common = ""
# We set our own IP
$script_common << "sed -i '/127.0.1.1/d' /etc/hosts\n"
# Fix bogus entries that some os use
$script_common << "sed -i '/127.0.0.1/d' /etc/hosts\n"
$script_common << "echo \"127.0.0.1 localhost.localdomain localhost\" >> /etc/hosts\n"
pcp_hosts.each_pair do |name, options|
ipaddr = options[:ipaddress]
hostname = options[:hostname]
$script_common << "echo \"#{ipaddr} #{hostname} #{hostname}.localdomain\" >> /etc/hosts\n"
end
$script_common << "domainname localdomain"
############################################################
# Main Vagrant Init : Loop over Host configs
############################################################
Vagrant.configure(VAGRANTFILE_API_VERSION) do |global_config|
global_config.ssh.forward_x11 = true
global_config.ssh.forward_agent = true
global_config.ssh.insert_key = false
if Vagrant.has_plugin?("vagrant-cachier")
global_config.cache.scope = :box
end
# Global shared folder for pcp source. Copy it so we have our own to muck around in
global_config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync_auto: true, :rsync__exclude => ["qaresults/", "./pcp-*/" ], :rsync__args => ["--verbose", "--archive", "--delete", "-z", "--no-owner", "--no-group" ]
pcp_hosts.each_pair do |name, options|
global_config.vm.define name do |config|
config.vm.provider "virtualbox" do |v|
v.name = "Vagrant PCP - #{name}"
v.customize ["modifyvm", :id, "--groups", "/VagrantPCP", "--memory", VM_MEM, "--cpus", VM_CPU]
end
config.vm.box = options[:box]
# VM specific shared folder for qa results
# config.vm.synced_folder "./qaresults/#{name}", "/qaresults", mount_options: ["dmode=777", "fmode=666"], create: true
# TODO - this appears to fail with `vagrant provision osxsierra`
config.vm.synced_folder "./qaresults/#{name}", "/qaresults", create: true, type: "rsync"
config.vm.hostname = "#{options[:hostname]}"
config.vm.network :private_network, ip: options[:ipaddress]
# Setup networking etc
config.vm.provision :shell, :inline => $script_common
# Do platfrom specifics: install packages, etc
config.vm.provision :shell, path: "provisioning/#{options[:script]}"
# Run QA and copy results back to host
config.vm.provision :shell, path: "provisioning/qa.sh", args: [ qa_groups, change_range ]
if pcp_mode == "release"
config.vm.provision :shell, path: "provisioning/release.sh", args: [ "#{ options[:distro_name] }" ]
elsif pcp_mode == "nightly"
config.vm.provision :shell, path: "provisioning/release.sh", args: [ "#{ options[:distro_name] }".concat("-testing") ]
end
end
end
end