From 15c420206fbef6c18952138aa91d2d60c5220178 Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Thu, 17 Aug 2017 13:43:45 +0100 Subject: [PATCH] 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 --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 9a6f897c0d..1fd4aa3aec 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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