summaryrefslogtreecommitdiffstats
path: root/src/vagrant/kubeadm_basic/Vagrantfile
diff options
context:
space:
mode:
authorGuo Ruijing <ruijing.guo@intel.com>2017-11-02 11:38:38 -0700
committerGuo Ruijing <ruijing.guo@intel.com>2017-11-02 11:48:39 -0700
commitf687064ebb1a1bab94ce3d8c928dbb70290140aa (patch)
tree52290436b640a8b234458cbf9a0177677cd94c62 /src/vagrant/kubeadm_basic/Vagrantfile
parent03f6fa24dd607c7ad446f990db28e1ec2491ea2f (diff)
add container4nfv in daily jenkins
Change-Id: Icfa4fed9d8a671befb32581b06ac617b6410d3a7 Signed-off-by: Guo Ruijing <ruijing.guo@intel.com>
Diffstat (limited to 'src/vagrant/kubeadm_basic/Vagrantfile')
-rw-r--r--src/vagrant/kubeadm_basic/Vagrantfile2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vagrant/kubeadm_basic/Vagrantfile b/src/vagrant/kubeadm_basic/Vagrantfile
index f1e7aac..10bf414 100644
--- a/src/vagrant/kubeadm_basic/Vagrantfile
+++ b/src/vagrant/kubeadm_basic/Vagrantfile
@@ -6,6 +6,7 @@ Vagrant.configure("2") do |config|
config.vm.box = "bento/ubuntu-16.04"
config.vm.synced_folder "../..", "/src"
config.vm.provision "shell", path: "host_setup.sh", privileged: false
+
config.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", 4096]
vb.customize ["modifyvm", :id, "--cpus", 4]
@@ -13,6 +14,7 @@ Vagrant.configure("2") do |config|
vb.customize ["setextradata", :id, "VBoxInternal/CPUM/SSE4.1", "1"]
vb.customize ["setextradata", :id, "VBoxInternal/CPUM/SSE4.2", "1"]
vb.customize "post-boot",["controlvm", :id, "setlinkstate1", "on"]
+ vb.destroy_unused_network_interfaces = true
end
config.vm.define "master" do |config|