From 9740c63ede4d2d804dcfdb25d80804abc924b20e Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Mon, 4 Sep 2017 20:48:07 +0100 Subject: [PATCH] Vagrantfile: Bump memory requirements to 16G Apparently 8G is no longer enought to deploy the 'mini' flavor since the following error occurs: [14505.101254] Out of memory: Kill process 23666 (qemu-system-x86) score 344 or sacrifice child [14505.103404] Killed process 23666 (qemu-system-x86) total-vm:5566132kB, anon-rss:3008288kB, file-rss:0kB, shmem-rss:0kB Change-Id: Iaa21ad367c63bf17a2c999082b5e09fa2e772d67 Signed-off-by: Markos Chandras --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 2a82902b..26a2a326 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 = 16384 v.cpus = 8 end -- 2.16.6