Vagrantfile: Increase VM memory size to 12G

Running AIO on Vagrant results in the entire 8G of memory being used.
This makes the VM really slow after a while and as a result of which
various services may start to fail due to timeouts. It's best to
increase the VM memory to 12G in order to make testing on Vagrant
smoother.

Related-Bug: #1711376
Change-Id: Ib371c3513081a82271f18cde340e1cd9465a3da6
This commit is contained in:
Markos Chandras 2017-08-17 13:43:45 +01:00
parent 5e2f9ccb05
commit 15c420206f
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -22,7 +22,7 @@ Vagrant.configure(2) do |config|
# Configure all VM specs.
config.vm.provider "virtualbox" do |v|
v.memory = 8192
v.memory = 12288
v.cpus = 4
end