Infra: Vagrant ansible version
[csit.git] / csit.infra.vagrant / Vagrantfile
1 # -*- mode: ruby -*-
2 # vi: set ft=ruby :
3
4 Vagrant.configure("2") do |config|
5
6     # Configure cached packages to be shared between instances of the
7     # same base box.
8     if Vagrant.has_plugin?("vagrant-cachier")
9         config.cache.scope = :box
10     end
11
12     # Configure proxy if needed.
13     if Vagrant.has_plugin?("vagrant-proxyconf")
14         config.proxy.http     = "http://192.168.0.2:3128/"
15         config.proxy.https    = "http://192.168.0.2:3128/"
16         config.proxy.ftp      = "http://192.168.0.2:3128/"
17         config.proxy.no_proxy = "localhost,127.0.0.1"
18     end
19
20     # Configure testing network interfaces (tg).
21     config.vm.network :private_network, type: "dhcp", auto_config: false, virtualbox__intnet: "link1", nic_type: "82545em", mac: "0800270fe04d"
22     config.vm.network :private_network, type: "dhcp", auto_config: false, virtualbox__intnet: "link2", nic_type: "82545em", mac: "08002761f7ad"
23     config.vm.network :private_network, type: "dhcp", auto_config: false, virtualbox__intnet: "link3", nic_type: "82545em", mac: "080027dc5da4"
24
25     # Configure testing network interfaces (sut).
26     config.vm.network :private_network, type: "dhcp", auto_config: false, virtualbox__intnet: "link1", nic_type: "82545em", mac: "080027385e58"
27     config.vm.network :private_network, type: "dhcp", auto_config: false, virtualbox__intnet: "link2", nic_type: "82545em", mac: "080027e3f542"
28     config.vm.network :private_network, type: "dhcp", auto_config: false, virtualbox__intnet: "link3", nic_type: "82545em", mac: "0800274f7c63"
29
30     config.vm.synced_folder "../", "/vagrant/csit"
31
32     # Provision the box using ansible local (no Ansible installation needed
33     # on host).
34     config.vm.provision "ansible_local" do |ansible|
35         ansible.version = "2.10.8"
36         ansible.install_mode = "pip"
37         ansible.pip_install_cmd = "curl -s https://bootstrap.pypa.io/get-pip.py | sudo python3"
38         ansible.become = true
39         ansible.verbose = false
40         ansible.limit = "vagrant"
41         ansible.inventory_path = "csit/fdio.infra.ansible/inventories/vagrant_inventory/hosts"
42         ansible.playbook = "csit/fdio.infra.ansible/site.yaml"
43     end
44
45     config.vm.post_up_message = <<-MESSAGE
46     Your virtual machine is configured!
47
48     Login to the box using command:
49         vagrant ssh
50
51     To run some tests use the VPP Device bootstrap script, eg:
52         cd /home/vagrant/csit/resources/libraries/bash/entry
53         ./bootstrap_vpp_device.sh csit-vpp-device-master-ubuntu2004-1n-vbox
54
55     To run only selected tests based on TAGS, export environment variables
56     before running the test suite:
57         export GERRIT_EVENT_TYPE="comment-added"
58         export GERRIT_EVENT_COMMENT_TEXT="devicetest memif"
59         ./bootstrap_vpp_device.sh csit-vpp-device-master-ubuntu2004-1n-vbox
60
61     For more information please visit:
62         https://docs.fd.io/csit/master/report/
63         https://docs.fd.io/csit/master/trending/
64
65     MESSAGE
66
67     config.vm.define "focal", primary: true do |focal|
68         # Base box definition, currently using
69         #  Official Ubuntu 20.04 LTS (Focal) Daily Build
70         focal.vm.box = "ubuntu/focal64"
71         focal.vm.box_version = "20210415.0.0"
72         focal.vm.box_check_update = false
73
74         # Virtualbox machine configuration
75         focal.vm.provider "virtualbox" do |vb|
76             vb.name = "vppdevice-focal"
77             vb.gui = false
78             vb.memory = "8192"
79             vb.cpus = "4"
80             vb.customize ["modifyvm", :id, "--nicpromisc2", "allow-all"]
81             vb.customize ["modifyvm", :id, "--nicpromisc3", "allow-all"]
82             vb.customize ["modifyvm", :id, "--nicpromisc4", "allow-all"]
83             vb.customize ["modifyvm", :id, "--nicpromisc5", "allow-all"]
84             vb.customize ["modifyvm", :id, "--nicpromisc6", "allow-all"]
85             vb.customize ["modifyvm", :id, "--nicpromisc7", "allow-all"]
86         end
87     end
88 end