Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | # -*- mode: ruby -*- |
| 2 | # vi: set ft=ruby : |
| 3 | |
| 4 | Vagrant.configure(2) do |config| |
| 5 | |
| 6 | # Pick the right distro and bootstrap, default is ubuntu1404 |
Keith Burns (alagalah) | e0965d4 | 2016-06-19 07:58:51 -0700 | [diff] [blame] | 7 | distro = ( ENV['VPP_VAGRANT_DISTRO'] || "ubuntu1404") |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 8 | if distro == 'centos7' |
Ed Warnicke | c841eac | 2016-03-22 16:10:07 -0500 | [diff] [blame] | 9 | config.vm.box = "puppetlabs/centos-7.2-64-nocm" |
Thomas F Herbert | 7b75d21 | 2016-08-01 18:33:48 -0400 | [diff] [blame] | 10 | config.ssh.insert_key = false |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 11 | else |
| 12 | config.vm.box = "puppetlabs/ubuntu-14.04-64-nocm" |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 13 | end |
Thomas Monjalon | 9d6c0ab | 2016-06-01 10:02:04 +0200 | [diff] [blame] | 14 | config.vm.box_check_update = false |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 15 | |
Ed Warnicke | 30aff24 | 2016-05-06 12:58:31 -0500 | [diff] [blame] | 16 | config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"update.sh") |
Ray Kinsella | ee49bf8 | 2016-12-21 12:10:43 +0000 | [diff] [blame] | 17 | config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"build.sh"), :args => "/vpp vagrant" |
| 18 | config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"install.sh"), :args => "/vpp" |
Ed Warnicke | 30aff24 | 2016-05-06 12:58:31 -0500 | [diff] [blame] | 19 | config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"clearinterfaces.sh") |
| 20 | config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"run.sh") |
Ed Warnicke | d6a0fc5 | 2016-04-12 17:34:48 -0500 | [diff] [blame] | 21 | |
Ed Warnicke | eeee9e2 | 2016-02-02 17:47:17 -0800 | [diff] [blame] | 22 | # Add .gnupg dir in so folks can sign patches |
| 23 | # Note, as gnupg puts socket files in that dir, we have |
| 24 | # to be cautious and make sure we are dealing with a plain file |
| 25 | homedir = File.expand_path("~/") |
| 26 | Dir["#{homedir}/.gnupg/**/*"].each do |fname| |
| 27 | if File.file?(fname) |
| 28 | destname = fname.sub(Regexp.escape("#{homedir}/"),'') |
| 29 | config.vm.provision "file", source: fname, destination: destname |
| 30 | end |
| 31 | end |
| 32 | |
| 33 | # Copy in the .gitconfig if it exists |
| 34 | if File.file?(File.expand_path("~/.gitconfig")) |
| 35 | config.vm.provision "file", source: "~/.gitconfig", destination: ".gitconfig" |
| 36 | end |
| 37 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 38 | # vagrant-cachier caches apt/yum etc to speed subsequent |
| 39 | # vagrant up |
| 40 | # to enable, run |
| 41 | # vagrant plugin install vagrant-cachier |
| 42 | # |
| 43 | if Vagrant.has_plugin?("vagrant-cachier") |
| 44 | config.cache.scope = :box |
| 45 | end |
| 46 | |
Vincent JARDIN | 1d3be19 | 2016-01-14 17:01:08 -0800 | [diff] [blame] | 47 | # Define some physical ports for your VMs to be used by DPDK |
Srivatsa Sangli | 010972a | 2016-06-21 12:58:19 -0700 | [diff] [blame] | 48 | nics = (ENV['VPP_VAGRANT_NICS'] || "2").to_i(10) |
Vincent JARDIN | 1d3be19 | 2016-01-14 17:01:08 -0800 | [diff] [blame] | 49 | for i in 1..nics |
| 50 | config.vm.network "private_network", type: "dhcp" |
| 51 | end |
| 52 | |
Ed Warnicke | b73f267 | 2015-12-14 16:08:45 -0700 | [diff] [blame] | 53 | # use http proxy if avaiable |
| 54 | if ENV['http_proxy'] && Vagrant.has_plugin?("vagrant-proxyconf") |
Jeff Shaw | ecec279 | 2016-04-05 10:23:17 -0700 | [diff] [blame] | 55 | config.proxy.http = ENV['http_proxy'] |
| 56 | config.proxy.https = ENV['https_proxy'] |
Ed Warnicke | b73f267 | 2015-12-14 16:08:45 -0700 | [diff] [blame] | 57 | config.proxy.no_proxy = "localhost,127.0.0.1" |
| 58 | end |
| 59 | |
Keith Burns (alagalah) | e0965d4 | 2016-06-19 07:58:51 -0700 | [diff] [blame] | 60 | vmcpu=(ENV['VPP_VAGRANT_VMCPU'] || 2) |
Keith Burns (alagalah) | f803564 | 2016-06-25 03:50:28 -0700 | [diff] [blame] | 61 | vmram=(ENV['VPP_VAGRANT_VMRAM'] || 4096) |
Ed Warnicke | 3ba4d36 | 2016-09-01 11:54:27 -0700 | [diff] [blame] | 62 | |
| 63 | config.ssh.forward_agent = true |
| 64 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 65 | config.vm.provider "virtualbox" do |vb| |
Keith Burns (alagalah) | 3d5916d | 2016-05-01 09:12:18 -0700 | [diff] [blame] | 66 | vb.customize ["modifyvm", :id, "--ioapic", "on"] |
Keith Burns (alagalah) | e0965d4 | 2016-06-19 07:58:51 -0700 | [diff] [blame] | 67 | vb.memory = "#{vmram}" |
| 68 | vb.cpus = "#{vmcpu}" |
Ray | 9387e51 | 2016-07-20 13:13:18 +0100 | [diff] [blame] | 69 | |
Padraig Connolly | 46f133d | 2017-01-17 14:13:03 +0000 | [diff] [blame] | 70 | # rsync the vpp directory if provision hasn't happened yet |
| 71 | unless File.exist? (".vagrant/machines/default/virtualbox/action_provision") |
| 72 | config.vm.synced_folder "../../", "/vpp", type: "rsync", |
| 73 | rsync__auto: false, |
| 74 | rsync__exclude: [ |
| 75 | "build-root/build*/", |
| 76 | "build-root/install*/", |
| 77 | "build-root/images*/", |
| 78 | "build-root/*.deb", |
| 79 | "build-root/*.rpm", |
| 80 | "build-root/*.changes", |
| 81 | "build-root/python", |
| 82 | "build-root/deb/debian/*.dkms", |
| 83 | "build-root/deb/debian/*.install", |
| 84 | "build-root/deb/debian/changes", |
| 85 | "build-root/tools"] |
| 86 | end |
| 87 | |
Ray | 9387e51 | 2016-07-20 13:13:18 +0100 | [diff] [blame] | 88 | #support for the SSE4.x instruction is required in some versions of VB. |
| 89 | vb.customize ["setextradata", :id, "VBoxInternal/CPUM/SSE4.1", "1"] |
| 90 | vb.customize ["setextradata", :id, "VBoxInternal/CPUM/SSE4.2", "1"] |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 91 | end |
| 92 | config.vm.provider "vmware_fusion" do |fusion,override| |
Keith Burns (alagalah) | e0965d4 | 2016-06-19 07:58:51 -0700 | [diff] [blame] | 93 | fusion.vmx["memsize"] = "#{vmram}" |
| 94 | fusion.vmx["numvcpus"] = "#{vmcpu}" |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 95 | end |
Jeff Shaw | ecec279 | 2016-04-05 10:23:17 -0700 | [diff] [blame] | 96 | config.vm.provider "libvirt" do |lv| |
Keith Burns (alagalah) | e0965d4 | 2016-06-19 07:58:51 -0700 | [diff] [blame] | 97 | lv.memory = "#{vmram}" |
| 98 | lv.cpus = "#{vmcpu}" |
Jeff Shaw | ecec279 | 2016-04-05 10:23:17 -0700 | [diff] [blame] | 99 | end |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 100 | config.vm.provider "vmware_workstation" do |vws,override| |
Keith Burns (alagalah) | e0965d4 | 2016-06-19 07:58:51 -0700 | [diff] [blame] | 101 | vws.vmx["memsize"] = "#{vmram}" |
| 102 | vws.vmx["numvcpus"] = "#{vmcpu}" |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 103 | end |
| 104 | end |