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:
parent
5e2f9ccb05
commit
15c420206f
2
Vagrantfile
vendored
2
Vagrantfile
vendored
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user