blob: 07db660c03473de9dd9cc502118e372a06650566 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001# -*- mode: ruby -*-
2# vi: set ft=ruby :
3
4Vagrant.configure(2) do |config|
5
Dave Wallaceed0e49c2017-01-26 21:42:00 -05006 # Pick the right distro and bootstrap, default is ubuntu1604
7 distro = ( ENV['VPP_VAGRANT_DISTRO'] || "ubuntu1604")
Ed Warnickecb9cada2015-12-08 15:45:58 -07008 if distro == 'centos7'
Ed Warnickec841eac2016-03-22 16:10:07 -05009 config.vm.box = "puppetlabs/centos-7.2-64-nocm"
Thomas F Herbert7b75d212016-08-01 18:33:48 -040010 config.ssh.insert_key = false
Dave Wallaceed0e49c2017-01-26 21:42:00 -050011 else
12 config.vm.box = "puppetlabs/ubuntu-16.04-64-nocm"
Ed Warnickecb9cada2015-12-08 15:45:58 -070013 end
Thomas Monjalon9d6c0ab2016-06-01 10:02:04 +020014 config.vm.box_check_update = false
Ed Warnickecb9cada2015-12-08 15:45:58 -070015
Ed Warnicke30aff242016-05-06 12:58:31 -050016 config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"update.sh")
Ray Kinsellaee49bf82016-12-21 12:10:43 +000017 config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"build.sh"), :args => "/vpp vagrant"
Dave Wallaceed0e49c2017-01-26 21:42:00 -050018
19 post_build = ( ENV['VPP_VAGRANT_POST_BUILD'] )
20 if post_build == "test"
21 config.vm.provision "shell", inline: "echo Testing VPP; cd /vpp; make test"
22 elsif post_build == "install"
23 config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"install.sh"), :args => "/vpp"
24 config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"clearinterfaces.sh")
25 config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"run.sh")
Dave Wallace3079a642017-09-06 01:59:43 -040026 elsif post_build == "vcl-test"
27 config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"vcl_test.sh"), :args => "/vpp vagrant"
Dave Wallaceed0e49c2017-01-26 21:42:00 -050028 end
Ed Warnicked6a0fc52016-04-12 17:34:48 -050029
Ed Warnickeeeee9e22016-02-02 17:47:17 -080030 # Add .gnupg dir in so folks can sign patches
31 # Note, as gnupg puts socket files in that dir, we have
32 # to be cautious and make sure we are dealing with a plain file
33 homedir = File.expand_path("~/")
34 Dir["#{homedir}/.gnupg/**/*"].each do |fname|
35 if File.file?(fname)
36 destname = fname.sub(Regexp.escape("#{homedir}/"),'')
37 config.vm.provision "file", source: fname, destination: destname
38 end
39 end
40
41 # Copy in the .gitconfig if it exists
42 if File.file?(File.expand_path("~/.gitconfig"))
43 config.vm.provision "file", source: "~/.gitconfig", destination: ".gitconfig"
44 end
45
Ed Warnickecb9cada2015-12-08 15:45:58 -070046 # vagrant-cachier caches apt/yum etc to speed subsequent
47 # vagrant up
48 # to enable, run
49 # vagrant plugin install vagrant-cachier
50 #
51 if Vagrant.has_plugin?("vagrant-cachier")
52 config.cache.scope = :box
53 end
54
Vincent JARDIN1d3be192016-01-14 17:01:08 -080055 # Define some physical ports for your VMs to be used by DPDK
Srivatsa Sangli010972a2016-06-21 12:58:19 -070056 nics = (ENV['VPP_VAGRANT_NICS'] || "2").to_i(10)
Vincent JARDIN1d3be192016-01-14 17:01:08 -080057 for i in 1..nics
58 config.vm.network "private_network", type: "dhcp"
59 end
60
Ed Warnickeb73f2672015-12-14 16:08:45 -070061 # use http proxy if avaiable
62 if ENV['http_proxy'] && Vagrant.has_plugin?("vagrant-proxyconf")
Jeff Shawecec2792016-04-05 10:23:17 -070063 config.proxy.http = ENV['http_proxy']
64 config.proxy.https = ENV['https_proxy']
Ed Warnickeb73f2672015-12-14 16:08:45 -070065 config.proxy.no_proxy = "localhost,127.0.0.1"
66 end
67
Keith Burns (alagalah)e0965d42016-06-19 07:58:51 -070068 vmcpu=(ENV['VPP_VAGRANT_VMCPU'] || 2)
Keith Burns (alagalah)f8035642016-06-25 03:50:28 -070069 vmram=(ENV['VPP_VAGRANT_VMRAM'] || 4096)
Ed Warnicke3ba4d362016-09-01 11:54:27 -070070
71 config.ssh.forward_agent = true
Dave Wallaceed0e49c2017-01-26 21:42:00 -050072 config.ssh.forward_x11 = true
Ed Warnicke3ba4d362016-09-01 11:54:27 -070073
Ed Warnickecb9cada2015-12-08 15:45:58 -070074 config.vm.provider "virtualbox" do |vb|
Keith Burns (alagalah)3d5916d2016-05-01 09:12:18 -070075 vb.customize ["modifyvm", :id, "--ioapic", "on"]
Keith Burns (alagalah)e0965d42016-06-19 07:58:51 -070076 vb.memory = "#{vmram}"
77 vb.cpus = "#{vmcpu}"
Ray9387e512016-07-20 13:13:18 +010078
Padraig Connolly46f133d2017-01-17 14:13:03 +000079 # rsync the vpp directory if provision hasn't happened yet
80 unless File.exist? (".vagrant/machines/default/virtualbox/action_provision")
81 config.vm.synced_folder "../../", "/vpp", type: "rsync",
82 rsync__auto: false,
83 rsync__exclude: [
84 "build-root/build*/",
85 "build-root/install*/",
86 "build-root/images*/",
87 "build-root/*.deb",
88 "build-root/*.rpm",
89 "build-root/*.changes",
90 "build-root/python",
91 "build-root/deb/debian/*.dkms",
92 "build-root/deb/debian/*.install",
93 "build-root/deb/debian/changes",
94 "build-root/tools"]
95 end
96
Ray9387e512016-07-20 13:13:18 +010097 #support for the SSE4.x instruction is required in some versions of VB.
98 vb.customize ["setextradata", :id, "VBoxInternal/CPUM/SSE4.1", "1"]
99 vb.customize ["setextradata", :id, "VBoxInternal/CPUM/SSE4.2", "1"]
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100 end
101 config.vm.provider "vmware_fusion" do |fusion,override|
Keith Burns (alagalah)e0965d42016-06-19 07:58:51 -0700102 fusion.vmx["memsize"] = "#{vmram}"
103 fusion.vmx["numvcpus"] = "#{vmcpu}"
Ed Warnickecb9cada2015-12-08 15:45:58 -0700104 end
Jeff Shawecec2792016-04-05 10:23:17 -0700105 config.vm.provider "libvirt" do |lv|
Keith Burns (alagalah)e0965d42016-06-19 07:58:51 -0700106 lv.memory = "#{vmram}"
107 lv.cpus = "#{vmcpu}"
Jeff Shawecec2792016-04-05 10:23:17 -0700108 end
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109 config.vm.provider "vmware_workstation" do |vws,override|
Keith Burns (alagalah)e0965d42016-06-19 07:58:51 -0700110 vws.vmx["memsize"] = "#{vmram}"
111 vws.vmx["numvcpus"] = "#{vmcpu}"
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112 end
113end