summaryrefslogtreecommitdiffstats
path: root/src/cni/ovsdpdk/Vagrantfile
diff options
context:
space:
mode:
authorGuo Ruijing <ruijing.guo@intel.com>2017-08-01 14:44:21 -0700
committerGuo Ruijing <ruijing.guo@intel.com>2017-08-01 14:46:09 -0700
commitf2b811df691ded8deb1bf4c1a54ac65d886d3a18 (patch)
tree8cfb1a5e8f9c97de206a530dabfcb1bf31074248 /src/cni/ovsdpdk/Vagrantfile
parentdc766e69c0c08c55b6df2384bbcfd1e712f03160 (diff)
add ovsdpdk cni
Change-Id: Id3eba33d3b33deee815596c0a56bbe77954e2214 Signed-off-by: Guo Ruijing <ruijing.guo@intel.com>
Diffstat (limited to 'src/cni/ovsdpdk/Vagrantfile')
-rw-r--r--src/cni/ovsdpdk/Vagrantfile16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/cni/ovsdpdk/Vagrantfile b/src/cni/ovsdpdk/Vagrantfile
new file mode 100644
index 0000000..f170c69
--- /dev/null
+++ b/src/cni/ovsdpdk/Vagrantfile
@@ -0,0 +1,16 @@
+Vagrant.require_version ">= 1.8.6"
+Vagrant.configure("2") do |config|
+
+ config.vm.box = "bento/ubuntu-16.04"
+ config.vm.provider :virtualbox do |vb|
+ vb.customize ["modifyvm", :id, "--memory", 4096]
+ vb.customize ["modifyvm", :id, "--cpus", 4]
+ vb.customize "post-boot",["controlvm", :id, "setlinkstate1", "on"]
+ end
+
+ config.vm.define "cni-ovsdpdk" do |config|
+ config.vm.hostname = "cni-ovsdpdk"
+ config.vm.provision "shell", path: "build_cni_ovsdpdk.sh", privileged: false
+ end
+
+end