1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Copyright (c) 2016 Intel Corporation
unless Vagrant.has_plugin?("vagrant-reload")
raise 'vagrant-reload (plugin) is not installed!'
end
Vagrant.configure(2) do |config|
# Pick the right distro and bootstrap, default is ubuntu1404
config.vm.box = "puppetlabs/ubuntu-16.04-64-nocm"
vmcpu=(ENV['VPP_VAGRANT_VMCPU'] || 2)
vmram=(ENV['VPP_VAGRANT_VMRAM'] || 2048)
# Define some physical ports for your VMs to be used by DPDK
config.vm.network "private_network", type: "dhcp"
config.vm.provision :shell, :path => File.join(File.dirname(__FILE__),"provision.sh") , privileged: false
config.vm.provision :reload
# vagrant-cachier caches apt/yum etc to speed subsequent
# vagrant up
# to enable, run
# vagrant plugin install vagrant-cachier
#
if Vagrant.has_plugin?("vagrant-cachier")
config.cache.scope = :box
end
# use http proxy if avaiable
if ENV['http_proxy'] && Vagrant.has_plugin?("vagrant-proxyconf")
config.proxy.http = ENV['http_proxy']
config.proxy.https = ENV['https_proxy']
config.proxy.no_proxy = "localhost,127.0.0.1"
end
config.vm.provider :aws do |aws, override|
#disable any corporate proxies in the AWS cloud
if Vagrant.has_plugin?("vagrant-proxyconf")
override.proxy.enabled = false
end
#Use rsync instead of nfs to sync folders.
override.vm.synced_folder ".", "/vagrant", type: "rsync",
rsync__exclude: ".git/"
#We don't need a local box, use the vagrant-aws dummy instead
override.vm.box = "dummy"
#These are the credentials required to access AWS Instructure.
#vagrant-aws requires these to create the new instance.
#These can either be your AWS root account access key (not recommended)
#or an IAM user with sufficent rights to create EC2 instances.
aws.access_key_id = "abcdefg"
aws.secret_access_key = "abcdefg"
#Your preferred region, Ireland is always a good choice.
aws.region = "eu-west-1"
#The EC2 keypair used to provision remote access creds in the
#newly created EC2 instance. These creds permit remote access via ssh.
aws.keypair_name = "ec2"
#Security groups (ACLs) to provision new EC2 instance with.
#At least one of the security groups should allow SSH.
#to enable `vagrant ssh` to work.
aws.security_groups = [ "permit-ssh", "default" ]
#Amazon Machine Instance (AMI) to use, default is Ubuntu Trusty (HVM).
aws.ami = "ami-0c59f37f"
#EC2 instance type (how much cpu/mem resources to give the instance).
aws.instance_type = "t2.micro"
#Any proxy command required for ssh to workaround corporate firewalls
#override.ssh.proxy_command = "nc -x proxy.com:1080 %h %p"
#Ubuntu AMIs use ubuntu as the default username, not vagrant.
override.ssh.username = "ubuntu"
#Private key to access new EC2 instance via SSH, should be the private
#key from the keypair_name created above.
override.ssh.private_key_path = "/root/private_key.pem"
end
config.vm.provider "virtualbox" do |vb|
vb.name = "vpp-bootstrap"
vb.customize ["modifyvm", :id, "--ioapic", "on"]
vb.memory = "#{vmram}"
vb.cpus = "#{vmcpu}"
vb.customize ["setextradata", :id, "VBoxInternal/CPUM/SSE4.1", "1"]
vb.customize ["setextradata", :id, "VBoxInternal/CPUM/SSE4.2", "1"]
end
config.vm.provider "vmware_fusion" do |fusion,override|
fusion.vmx["memsize"] = "#{vmram}"
fusion.vmx["numvcpus"] = "#{vmcpu}"
end
config.vm.provider "libvirt" do |lv|
lv.memory = "#{vmram}"
lv.cpus = "#{vmcpu}"
end
config.vm.provider "vmware_workstation" do |vws,override|
vws.vmx["memsize"] = "#{vmram}"
vws.vmx["numvcpus"] = "#{vmcpu}"
end
end
|