blob: badaa979a430b3ce8728a8aeedc81f367d10d353 [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'
Dave Wallaced51020c2017-09-26 18:15:47 -04009 config.vm.box = "centos/7"
10 config.vm.box_version = "1708.01"
Thomas F Herbert7b75d212016-08-01 18:33:48 -040011 config.ssh.insert_key = false
Marco Varlesec2e63fe2017-10-06 15:07:08 +020012 elsif distro == 'opensuse'
13 config.vm.box = "opensuse/openSUSE-42.3-x86_64"
14 config.vm.box_version = "1.0.4.20170726"
Dave Wallaceed0e49c2017-01-26 21:42:00 -050015 else
16 config.vm.box = "puppetlabs/ubuntu-16.04-64-nocm"
Ed Warnickecb9cada2015-12-08 15:45:58 -070017 end
Thomas Monjalon9d6c0ab2016-06-01 10:02:04 +020018 config.vm.box_check_update = false
Ed Warnickecb9cada2015-12-08 15:45:58 -070019
Ed Warnicke30aff242016-05-06 12:58:31 -050020 config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"update.sh")
Ray Kinsellaee49bf82016-12-21 12:10:43 +000021 config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"build.sh"), :args => "/vpp vagrant"
Dave Wallaceed0e49c2017-01-26 21:42:00 -050022
23 post_build = ( ENV['VPP_VAGRANT_POST_BUILD'] )
24 if post_build == "test"
25 config.vm.provision "shell", inline: "echo Testing VPP; cd /vpp; make test"
26 elsif post_build == "install"
27 config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"install.sh"), :args => "/vpp"
28 config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"clearinterfaces.sh")
29 config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"run.sh")
30 end
Ed Warnicked6a0fc52016-04-12 17:34:48 -050031
Ed Warnickeeeee9e22016-02-02 17:47:17 -080032 # Add .gnupg dir in so folks can sign patches
33 # Note, as gnupg puts socket files in that dir, we have
34 # to be cautious and make sure we are dealing with a plain file
35 homedir = File.expand_path("~/")
36 Dir["#{homedir}/.gnupg/**/*"].each do |fname|
37 if File.file?(fname)
38 destname = fname.sub(Regexp.escape("#{homedir}/"),'')
39 config.vm.provision "file", source: fname, destination: destname
40 end
41 end
42
43 # Copy in the .gitconfig if it exists
44 if File.file?(File.expand_path("~/.gitconfig"))
45 config.vm.provision "file", source: "~/.gitconfig", destination: ".gitconfig"
46 end
47
Ed Warnickecb9cada2015-12-08 15:45:58 -070048 # vagrant-cachier caches apt/yum etc to speed subsequent
49 # vagrant up
50 # to enable, run
51 # vagrant plugin install vagrant-cachier
52 #
53 if Vagrant.has_plugin?("vagrant-cachier")
54 config.cache.scope = :box
55 end
56
Vincent JARDIN1d3be192016-01-14 17:01:08 -080057 # Define some physical ports for your VMs to be used by DPDK
Srivatsa Sangli010972a2016-06-21 12:58:19 -070058 nics = (ENV['VPP_VAGRANT_NICS'] || "2").to_i(10)
Vincent JARDIN1d3be192016-01-14 17:01:08 -080059 for i in 1..nics
60 config.vm.network "private_network", type: "dhcp"
61 end
62
Ed Warnickeb73f2672015-12-14 16:08:45 -070063 # use http proxy if avaiable
64 if ENV['http_proxy'] && Vagrant.has_plugin?("vagrant-proxyconf")
Jeff Shawecec2792016-04-05 10:23:17 -070065 config.proxy.http = ENV['http_proxy']
66 config.proxy.https = ENV['https_proxy']
Ed Warnickeb73f2672015-12-14 16:08:45 -070067 config.proxy.no_proxy = "localhost,127.0.0.1"
68 end
69
Keith Burns (alagalah)e0965d42016-06-19 07:58:51 -070070 vmcpu=(ENV['VPP_VAGRANT_VMCPU'] || 2)
Keith Burns (alagalah)f8035642016-06-25 03:50:28 -070071 vmram=(ENV['VPP_VAGRANT_VMRAM'] || 4096)
Ed Warnicke3ba4d362016-09-01 11:54:27 -070072
73 config.ssh.forward_agent = true
Dave Wallaceed0e49c2017-01-26 21:42:00 -050074 config.ssh.forward_x11 = true
Ed Warnicke3ba4d362016-09-01 11:54:27 -070075
Ed Warnickecb9cada2015-12-08 15:45:58 -070076 config.vm.provider "virtualbox" do |vb|
Keith Burns (alagalah)3d5916d2016-05-01 09:12:18 -070077 vb.customize ["modifyvm", :id, "--ioapic", "on"]
Keith Burns (alagalah)e0965d42016-06-19 07:58:51 -070078 vb.memory = "#{vmram}"
79 vb.cpus = "#{vmcpu}"
Ray9387e512016-07-20 13:13:18 +010080
Padraig Connolly46f133d2017-01-17 14:13:03 +000081 # rsync the vpp directory if provision hasn't happened yet
82 unless File.exist? (".vagrant/machines/default/virtualbox/action_provision")
83 config.vm.synced_folder "../../", "/vpp", type: "rsync",
84 rsync__auto: false,
85 rsync__exclude: [
86 "build-root/build*/",
87 "build-root/install*/",
88 "build-root/images*/",
89 "build-root/*.deb",
90 "build-root/*.rpm",
91 "build-root/*.changes",
92 "build-root/python",
93 "build-root/deb/debian/*.dkms",
94 "build-root/deb/debian/*.install",
95 "build-root/deb/debian/changes",
96 "build-root/tools"]
97 end
98
Ray9387e512016-07-20 13:13:18 +010099 #support for the SSE4.x instruction is required in some versions of VB.
100 vb.customize ["setextradata", :id, "VBoxInternal/CPUM/SSE4.1", "1"]
101 vb.customize ["setextradata", :id, "VBoxInternal/CPUM/SSE4.2", "1"]
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102 end
103 config.vm.provider "vmware_fusion" do |fusion,override|
Keith Burns (alagalah)e0965d42016-06-19 07:58:51 -0700104 fusion.vmx["memsize"] = "#{vmram}"
105 fusion.vmx["numvcpus"] = "#{vmcpu}"
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106 end
Jeff Shawecec2792016-04-05 10:23:17 -0700107 config.vm.provider "libvirt" do |lv|
Keith Burns (alagalah)e0965d42016-06-19 07:58:51 -0700108 lv.memory = "#{vmram}"
109 lv.cpus = "#{vmcpu}"
Jeff Shawecec2792016-04-05 10:23:17 -0700110 end
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111 config.vm.provider "vmware_workstation" do |vws,override|
Keith Burns (alagalah)e0965d42016-06-19 07:58:51 -0700112 vws.vmx["memsize"] = "#{vmram}"
113 vws.vmx["numvcpus"] = "#{vmcpu}"
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114 end
115end