From 1d19d285f11dfe766bd67fe964ae7b2e7a64e982 Mon Sep 17 00:00:00 2001 From: Julia Kreger Date: Tue, 9 Aug 2016 09:59:23 -0400 Subject: [PATCH] Change Vagrant VM to mirror memory/cpu in CI Due to the differing performance profile of gate machines, and that the settings often need to be chnaged in order to mirror gate testing, it may be good to change the VM defaults. Change-Id: I6fc42cb279c0e930804c4f07cc820858f606cc6c --- tools/vagrant_dev_env/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/vagrant_dev_env/Vagrantfile b/tools/vagrant_dev_env/Vagrantfile index 4474393db..cc1de5558 100644 --- a/tools/vagrant_dev_env/Vagrantfile +++ b/tools/vagrant_dev_env/Vagrantfile @@ -10,7 +10,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.define 'bifrost' do |bifrost| bifrost.vm.provider :virtualbox do |vb| - vb.customize ['modifyvm', :id, '--memory', '4096', '--cpus', '1', '--cpuexecutioncap', '80'] + vb.customize ['modifyvm', :id, '--memory', '8196', '--cpus', '4'] # the setting below are to improve performance on mac's and should have little impact elsewhere. vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] vb.customize ["modifyvm", :id, "--natdnsproxy1", "on"]