blob: 4242919f7c240cebf071465ab6718097c9385f50 [file] [log] [blame]
Victor Morales89ce3212017-06-16 18:32:48 -05001# -*- mode: ruby -*-
2# vi: set ft=ruby :
3
Idan Amit46123862017-09-19 13:43:32 +03004configuration = {
5 # Generic parameters used across all ONAP components
Victor Morales89ce3212017-06-16 18:32:48 -05006 'key_name' => 'ecomp_key',
7 'pub_key' => '',
8 'nexus_repo' => 'https://nexus.onap.org/content/sites/raw',
Victor Morales6a919972017-09-28 18:29:54 -07009 'nexus_repo_root' => 'https://nexus.onap.org',
10 'nexus_url_snapshot' => 'https://nexus.onap.org/content/repositories/snapshots',
Victor Morales89ce3212017-06-16 18:32:48 -050011 'nexus_docker_repo' => 'nexus3.onap.org:10001',
12 'nexus_username' => 'docker',
13 'nexus_password' => 'docker',
14 'dmaap_topic' => 'AUTO',
15 'artifacts_version' => '1.0.0',
16 'docker_version' => '1.0-STAGING-latest',
Victor Morales6a919972017-09-28 18:29:54 -070017 # Parameters for DCAE instantiation
Victor Morales89ce3212017-06-16 18:32:48 -050018 'dcae_zone' => 'iad4',
19 'dcae_state' => 'vi',
20 'openstack_tenant_id' => '',
21 'openstack_username' => '',
22 'openstack_api_key' => '',
23 'openstack_password' => '',
Victor Moralesdd074802017-07-26 16:06:35 -050024 'odl_version' => '0.5.3-Boron-SR3',
Victor Morales6a919972017-09-28 18:29:54 -070025 # Parameters for enabling features
Victor Morales7abf1a82017-11-06 09:20:27 -080026 'debug' => 'True',
Victor Morales6a919972017-09-28 18:29:54 -070027 'build_image' => 'True',
Idan Amit1690e082017-08-20 08:58:14 +030028 'clone_repo' => 'True',
Victor Morales2909e2e2017-08-08 15:51:52 -050029 'compile_repo' => 'False',
Victor Morales6a919972017-09-28 18:29:54 -070030 'enable_oparent' => 'True',
31 'skip_get_images' => 'False',
32 'skip_install' => 'True'
Victor Morales89ce3212017-06-16 18:32:48 -050033}
34
Idan Amit46123862017-09-19 13:43:32 +030035box = {
36 :virtualbox => 'ubuntu/trusty64',
37 :libvirt => 'sputnik13/trusty64',
38 :openstack => nil
39}
40
Idan Amit46123862017-09-19 13:43:32 +030041nodes = [
Victor Moralesdbe2e0b2017-09-20 09:55:45 -070042 {
Idan Amit46123862017-09-19 13:43:32 +030043 :name => "aai",
44 :ips => ['10.252.0.6', "192.168.50.6"],
45 :macs => [],
46 :cpus => 2,
47 :cpu => "50",
48 :ram => 4 * 1024,
49 :groups => ["individual"],
50 :args => ["aai"]
51 },
Victor Moralesdbe2e0b2017-09-20 09:55:45 -070052 {
Idan Amit46123862017-09-19 13:43:32 +030053 :name => "all-in-one",
Victor Morales071b81c2017-11-07 14:13:07 -080054 :ips => ['10.252.1.3', "192.168.51.3"],
Idan Amit46123862017-09-19 13:43:32 +030055 :macs => [],
56 :cpus => 2,
57 :cpu => "50",
58 :ram => 12 * 1024,
59 :groups => ["all-in-one"],
60 :flavor => 'm1.xlarge',
61 :args => ['mr', 'sdc', 'aai', 'mso', 'robot', 'vid', 'sdnc', 'portal', 'dcae', 'policy', 'appc', 'vfc', 'ccsdk'],
62 },
Victor Moralesdbe2e0b2017-09-20 09:55:45 -070063 {
Idan Amit46123862017-09-19 13:43:32 +030064 :name => "appc",
65 :ips => ['10.252.0.14', "192.168.50.14"],
66 :macs => [],
67 :cpus => 2,
68 :cpu => "50",
69 :ram => 4 * 1024,
70 :groups => ["individual"],
71 :args => ["appc"],
72 },
Victor Moralesdbe2e0b2017-09-20 09:55:45 -070073 {
Idan Amit46123862017-09-19 13:43:32 +030074 :name => "ccsdk",
75 :ips => ['10.252.0.14', "192.168.50.17"],
76 :macs => [],
77 :cpus => 2,
78 :cpu => "50",
79 :ram => 4 * 1024,
80 :groups => ["individual"],
81 :args => ["ccsdk"],
82 },
Victor Moralesdbe2e0b2017-09-20 09:55:45 -070083 {
Idan Amit46123862017-09-19 13:43:32 +030084 :name => "dcae",
85 :ips => ['10.252.0.12', "192.168.50.12"],
86 :macs => [],
87 :cpus => 2,
88 :cpu => "50",
89 :ram => 4 * 1024,
90 :groups => ["individual"],
91 :args => ["dcae"],
92 },
Victor Moralesdbe2e0b2017-09-20 09:55:45 -070093 {
Idan Amit46123862017-09-19 13:43:32 +030094 :name => "dns",
95 :ips => ['10.252.0.3', "192.168.50.3"],
96 :macs => [],
97 :cpus => 2,
98 :cpu => "50",
99 :ram => 1 * 1024,
100 :groups => ["individual"],
101 :flavor => 'm1.small',
102 :args => [" "]
103 },
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700104 {
Idan Amit46123862017-09-19 13:43:32 +0300105 :name => "message-router",
106 :ips => ['10.252.0.4', "192.168.50.4"],
107 :macs => [],
108 :cpus => 2,
109 :cpu => "50",
110 :ram => 4 * 1024,
111 :groups => ["individual"],
112 :args => ["mr"],
113 },
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700114 {
Idan Amit46123862017-09-19 13:43:32 +0300115 :name => "mso",
116 :ips => ['10.252.0.7', "192.168.50.7"],
117 :macs => [],
118 :cpus => 2,
119 :cpu => "50",
120 :ram => 4 * 1024,
121 :groups => ["individual"],
122 :args => ["mso"],
123 },
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700124 {
Idan Amit46123862017-09-19 13:43:32 +0300125 :name => "multicloud",
126 :ips => ['10.252.0.16', "192.168.50.16"],
127 :macs => [],
128 :cpus => 2,
129 :cpu => "50",
130 :ram => 4 * 1024,
131 :groups => ["individual"],
132 :args => ["multicloud"],
133 },
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700134 {
Idan Amit46123862017-09-19 13:43:32 +0300135 :name => "policy",
136 :ips => ['10.252.0.13', "192.168.50.13"],
137 :macs => [],
138 :cpus => 2,
139 :cpu => "50",
140 :ram => 4 * 1024,
141 :groups => ["individual"],
142 :args => ["policy"],
143 },
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700144 {
Idan Amit46123862017-09-19 13:43:32 +0300145 :name => "portal",
146 :ips => ['10.252.0.11', "192.168.50.11"],
147 :macs => [],
148 :cpus => 2,
149 :cpu => "50",
150 :ram => 4 * 1024,
151 :groups => ["individual"],
152 :args => ["portal"],
153 },
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700154 {
Idan Amit46123862017-09-19 13:43:32 +0300155 :name => "robot",
156 :ips => ['10.252.0.8', "192.168.50.8"],
157 :macs => [],
158 :cpus => 2,
159 :cpu => "50",
160 :ram => 4 * 1024,
161 :groups => ["individual"],
162 :args => ["robot"],
163 },
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700164 {
Idan Amit46123862017-09-19 13:43:32 +0300165 :name => "sdc",
166 :ips => ['10.252.0.5', "192.168.50.5"],
167 :macs => [],
168 :cpus => 2,
169 :cpu => "50",
170 :ram => 8 * 1024,
171 :groups => ["individual"],
172 :args => ["sdc"],
173 },
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700174 {
Idan Amit46123862017-09-19 13:43:32 +0300175 :name => "sdnc",
176 :ips => ['10.252.0.10', "192.168.50.10"],
177 :macs => [],
178 :cpus => 2,
179 :cpu => "50",
180 :ram => 4 * 1024,
181 :groups => ["individual"],
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700182 :args => ["sdnc"],
Idan Amit46123862017-09-19 13:43:32 +0300183 },
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700184 {
Idan Amit46123862017-09-19 13:43:32 +0300185 :name => "testing",
Victor Morales071b81c2017-11-07 14:13:07 -0800186 :ips => ['10.252.2.3', "192.168.52.3"],
Idan Amit46123862017-09-19 13:43:32 +0300187 :macs => [],
188 :cpus => 2,
189 :cpu => "50",
190 :ram => 4 * 1024,
191 :groups => ["testing"],
192 :flavor => 'm1.small',
193 :args => [""],
194 },
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700195 {
Idan Amit46123862017-09-19 13:43:32 +0300196 :name => "vfc",
197 :ips => ['10.252.0.15', "192.168.50.15"],
198 :macs => [],
199 :cpus => 2,
200 :cpu => "50",
201 :ram => 4 * 1024,
202 :groups => ["individual"],
203 :args => ['vfc'],
204 },
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700205 {
Idan Amit46123862017-09-19 13:43:32 +0300206 :name => "vid",
207 :ips => ['10.252.0.9', "192.168.50.9"],
208 :macs => [],
209 :cpus => 2,
210 :cpu => "50",
211 :ram => 4 * 1024,
212 :groups => ["individual"],
213 :args => ['vid'],
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700214 },
Victor Moralesd3cbcf22017-10-25 16:01:58 -0700215 {
Victor Morales071b81c2017-11-07 14:13:07 -0800216 :name => "vnfsdk",
217 :ips => ['10.252.0.18', "192.168.50.18"],
218 :macs => [],
219 :cpus => 2,
220 :cpu => "50",
221 :ram => 4 * 1024,
222 :groups => ["individual"],
223 :args => ['vnfsdk'],
Shashank Kumar Shankarf84c9a12017-10-23 11:08:31 -0700224 },
225 {
Victor Moralesd3cbcf22017-10-25 16:01:58 -0700226 :name => "vvp",
227 :ips => ['10.252.0.17', "192.168.50.17"],
228 :macs => [],
229 :cpus => 2,
230 :cpu => "50",
231 :ram => 4 * 1024,
232 :groups => ["individual"],
233 :args => ['vvp'],
Shashank Kumar Shankarf84c9a12017-10-23 11:08:31 -0700234 }
Idan Amit46123862017-09-19 13:43:32 +0300235]
236
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700237run_path = 'vagrant_utils/postinstall.sh'
238sdc_volume = 'vol1-sdc-data.vdi'
Idan Amit46123862017-09-19 13:43:32 +0300239
Victor Moralesdd074802017-07-26 16:06:35 -0500240Vagrant.require_version ">= 1.8.6"
241
Victor Moralesdd074802017-07-26 16:06:35 -0500242# Determine the provider used
243provider = (ENV['VAGRANT_DEFAULT_PROVIDER'] || :virtualbox).to_sym
Idan Amit46123862017-09-19 13:43:32 +0300244puts "[INFO] Provider: #{provider} "
245
Victor Morales89ce3212017-06-16 18:32:48 -0500246vd_conf = ENV.fetch('VD_CONF', 'etc/settings.yaml')
247if File.exist?(vd_conf)
248 require 'yaml'
249 user_conf = YAML.load_file(vd_conf)
Idan Amit46123862017-09-19 13:43:32 +0300250 configuration.update(user_conf)
Victor Morales89ce3212017-06-16 18:32:48 -0500251end
252
Victor Morales6a919972017-09-28 18:29:54 -0700253# Set network interface
Areli Fussf57e9e72017-09-28 14:24:53 +0300254net_interface = 'vboxnet0'
Idan Amit46123862017-09-19 13:43:32 +0300255is_windows = Gem.win_platform?
256if is_windows
257 net_interface = 'VirtualBox Host-Only Ethernet Adapter #2'
Idan Amit46123862017-09-19 13:43:32 +0300258end
259puts "[INFO] Net interface: #{net_interface}"
260
261
Victor Morales6a919972017-09-28 18:29:54 -0700262# If argument is given use it. Otherwise use Env: DEPLOY_MODE else use default
Idan Amit46123862017-09-19 13:43:32 +0300263requested_machine = ARGV[1]
264
Victor Morales89ce3212017-06-16 18:32:48 -0500265deploy_mode = ENV.fetch('DEPLOY_MODE', 'individual')
Idan Amit46123862017-09-19 13:43:32 +0300266if requested_machine != nil
267 if requested_machine.include?("all-in-one") || requested_machine.include?("testing")
268 deploy_mode = requested_machine
269 end
270end
271
Victor Morales6a919972017-09-28 18:29:54 -0700272# Catch the status of all machines
Idan Amit46123862017-09-19 13:43:32 +0300273if ARGV[0] == 'status' || ARGV[0] == 'destroy'
274 deploy_mode = 'NA'
275end
276
277puts "[INFO] Deploy Mode: #{deploy_mode}"
278
Victor Morales6a919972017-09-28 18:29:54 -0700279# In case of all-in-one or testing clean the nodes list
Idan Amit46123862017-09-19 13:43:32 +0300280case deploy_mode
281 when 'all-in-one'
282 nodes.select! do |node|
283 if node[:name].include?("all-in-one")
284 true if node[:name]
285 end
286 end
287
288 when 'individual'
289 nodes.select! do |node|
290 if node[:groups][0].include?("individual")
291 true if node[:name]
Idan Amit46123862017-09-19 13:43:32 +0300292 end
293 end
294
295 when 'testing'
296 nodes.select! do |node|
297 if node[:name].include?("testing")
298 true if node[:name]
299 end
300 end
301end
Victor Morales89ce3212017-06-16 18:32:48 -0500302
303Vagrant.configure("2") do |config|
304
Idan Amit46123862017-09-19 13:43:32 +0300305 # PROXY definitions
306 if ENV['http_proxy'] != nil and ENV['https_proxy'] != nil and ENV['no_proxy'] != nil
307 if not Vagrant.has_plugin?('vagrant-proxyconf')
308 system 'vagrant plugin install vagrant-proxyconf'
309 raise 'vagrant-proxyconf was installed but it requires to execute again'
310 end
311 config.proxy.http = ENV['http_proxy']
312 config.proxy.https = ENV['https_proxy']
313 config.proxy.no_proxy = ENV['no_proxy']
Victor Moralescf269992017-10-18 09:29:55 -0700314 configuration['socks_proxy'] = ENV['socks_proxy']
Victor Morales89ce3212017-06-16 18:32:48 -0500315 end
Victor Morales89ce3212017-06-16 18:32:48 -0500316
Idan Amit46123862017-09-19 13:43:32 +0300317 if Vagrant.has_plugin?('vagrant-vbguest')
318 puts 'vagrant-vbguest auto_update feature will be disable to avoid sharing conflicts'
319 config.vbguest.auto_update = false
Victor Moralesf62e7b82017-07-27 17:26:06 -0500320 end
Idan Amit46123862017-09-19 13:43:32 +0300321
322 if provider == :libvirt
323 if not Vagrant.has_plugin?('vagrant-libvirt')
324 system 'vagrant plugin install vagrant-libvirt'
325 raise 'vagrant-libvirt was installed but it requires to execute again'
326 end
Victor Moralesdd074802017-07-26 16:06:35 -0500327 end
Areli Fussf57e9e72017-09-28 14:24:53 +0300328
Idan Amit46123862017-09-19 13:43:32 +0300329 if provider == :openstack
330 config.ssh.username = 'ubuntu'
331 if not Vagrant.has_plugin?('vagrant-openstack-provider')
332 system 'vagrant plugin install vagrant-openstack-provider'
333 raise 'vagrant-openstack-provider was installed but it requires to execute again'
334 end
335 end
Victor Morales89ce3212017-06-16 18:32:48 -0500336
Idan Amit46123862017-09-19 13:43:32 +0300337 nodes.each do |node|
338 config.vm.define node[:name] do |nodeconfig|
Victor Moralesdd074802017-07-26 16:06:35 -0500339
Idan Amit46123862017-09-19 13:43:32 +0300340 # Common Settings:
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700341
Idan Amit46123862017-09-19 13:43:32 +0300342 nodeconfig.vm.provider "virtualbox" do |vbox|
343 vbox.customize ['modifyvm', :id, '--nictype1', 'virtio']
344 vbox.customize ['modifyvm', :id, '--audio', 'none']
345 vbox.customize ['modifyvm', :id, '--vram', '1']
346 vbox.customize ['modifyvm', :id, "--cpuhotplug", "off"]
347 vbox.customize ['modifyvm', :id, "--cpuexecutioncap", node[:cpu]]
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700348 vbox.customize ['modifyvm', :id, "--cpus", node[:cpus]]
Idan Amit46123862017-09-19 13:43:32 +0300349 vbox.customize ["modifyvm", :id, "--memory", node[:ram]]
Victor Morales89ce3212017-06-16 18:32:48 -0500350 end
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700351
Idan Amit46123862017-09-19 13:43:32 +0300352 nodeconfig.vm.provider "libvirt" do |lbox|
353 lbox.memory = node[:ram]
354 lbox.nested = true
Victor Morales89ce3212017-06-16 18:32:48 -0500355 end
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700356
Idan Amit46123862017-09-19 13:43:32 +0300357 nodeconfig.vm.provider :openstack do |obox|
358 obox.openstack_auth_url = ENV.fetch('OS_AUTH_URL', '')
359 obox.tenant_name = ENV.fetch('OS_TENANT_NAME', '')
360 obox.username = ENV.fetch('OS_USERNAME', '')
361 obox.password = ENV.fetch('OS_PASSWORD', '')
362 obox.region = ENV.fetch('OS_REGION_NAME', '')
363 obox.identity_api_version = ENV.fetch('OS_IDENTITY_API_VERSION', '')
364 obox.domain_name = ENV.fetch('OS_PROJECT_DOMAIN_ID', '')
365 obox.project_name = ENV.fetch('OS_PROJECT_NAME', '')
366 obox.floating_ip_pool = ENV.fetch('OS_FLOATING_IP_POOL', '')
367 obox.floating_ip_pool_always_allocate = (ENV['OS_FLOATING_IP_ALWAYS_ALLOCATE'] == 'true')
368 obox.image = ENV.fetch('OS_IMAGE', '')
369 obox.security_groups = [ENV.fetch('OS_SEC_GROUP', '')]
370 obox.networks = ENV.fetch('OS_NETWORK', '')
371 obox.flavor = node[:flavor]
372 obox.server_name = node[:name]
Idan Amit46123862017-09-19 13:43:32 +0300373 end
Victor Moralesd4036482017-08-15 17:54:14 -0500374
Idan Amit46123862017-09-19 13:43:32 +0300375 # Set Box type
376 nodeconfig.vm.box = box[provider]
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700377
Idan Amit46123862017-09-19 13:43:32 +0300378 # Set Node name
379 nodeconfig.vm.hostname = node[:name]
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700380
Idan Amit46123862017-09-19 13:43:32 +0300381 # Set Sync Folder
382 nodeconfig.vm.synced_folder ".", "/vagrant", disabled: true
383 nodeconfig.vm.synced_folder './opt', '/opt/', create: true
384 nodeconfig.vm.synced_folder './lib', '/var/onap/', create: true
385 if !is_windows
386 nodeconfig.vm.synced_folder '~/.m2', '/root/.m2/', create: true
387 end
Victor Morales6a919972017-09-28 18:29:54 -0700388
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700389 # Set Network
Areli Fussf57e9e72017-09-28 14:24:53 +0300390 nodeconfig.vm.network :private_network,
391 :adapter => 2,
392 :name => net_interface,
393 :ip => node[:ips][0]
394
395 nodeconfig.vm.network :private_network,
396 :adapter => 3,
397 :ip => node[:ips][1],
398 :type => :static
Idan Amit46123862017-09-19 13:43:32 +0300399
400 # Specific settings:
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700401
Victor Morales6a919972017-09-28 18:29:54 -0700402 # Set Storage (For SDC or All-in-one)
Idan Amit46123862017-09-19 13:43:32 +0300403 if node[:name].include?("all-in-one") || node[:name].include?("sdc")
404 nodeconfig.vm.provider "virtualbox" do |v|
405 unless File.exist?(sdc_volume)
406 v.customize ['createhd', '--filename', sdc_volume, '--size', 20 * 1024]
407 end
408 v.customize ['storageattach', :id, '--storagectl', 'SATAController', '--port', 1, '--device', 0, '--type', 'hdd', '--medium', sdc_volume]
409 end
Victor Moralesdbe2e0b2017-09-20 09:55:45 -0700410
Idan Amit46123862017-09-19 13:43:32 +0300411 nodeconfig.vm.provider "libvirt" do |v|
412 v.storage :file, path: sdc_volume, bus: 'sata', device: 'vdb', size: '2G'
413 end
414 end
Areli Fussf57e9e72017-09-28 14:24:53 +0300415
Idan Amit46123862017-09-19 13:43:32 +0300416 if node[:name].include? "testing"
417 nodeconfig.vm.synced_folder './tests', '/var/onap_tests/', create: true
418 test_suite = ENV.fetch('TEST_SUITE', '*')
419 test_case = ENV.fetch('TEST_CASE', '*')
420 # Override variables
421 run_path = 'vagrant_utils/unit_testing.sh'
422 node[:args] = [test_suite, test_case]
Victor Morales6a919972017-09-28 18:29:54 -0700423 else
424 configuration['skip_get_images'] = ENV.fetch('SKIP_GET_IMAGES', configuration['skip_get_images'])
425 configuration['skip_install'] = ENV.fetch('SKIP_INSTALL', configuration['skip_install'])
Idan Amit46123862017-09-19 13:43:32 +0300426 end
427
Idan Amit46123862017-09-19 13:43:32 +0300428 if node[:name].include? "vfc"
429 nodeconfig.vm.provision 'docker'
430 end
431
432 nodeconfig.vm.provision 'shell' do |s|
433 s.path = run_path
434 s.args = node[:args]
435 s.env = configuration
436 end
437
438 end #nodeconfig
439 end #node
440end #config