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
This commit is contained in:
Julia Kreger 2016-08-09 09:59:23 -04:00
parent 97b3998c2c
commit 1d19d285f1
1 changed files with 1 additions and 1 deletions

View File

@ -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"]