Vagrantfile: Bump memory requirements to 16G 15/41615/2
authorMarkos Chandras <mchandras@suse.de>
Mon, 4 Sep 2017 19:48:07 +0000 (20:48 +0100)
committerMarkos Chandras <mchandras@suse.de>
Sat, 16 Sep 2017 09:30:55 +0000 (10:30 +0100)
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 <mchandras@suse.de>
Vagrantfile

index 2a82902..26a2a32 100644 (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 = 16384
     v.cpus = 8
   end