diff options
author | 2017-09-04 20:48:07 +0100 | |
---|---|---|
committer | 2017-09-16 10:30:55 +0100 | |
commit | 9740c63ede4d2d804dcfdb25d80804abc924b20e (patch) | |
tree | 59c2863a13bfa2cd4c54d8948d41d78323175018 | |
parent | ab3ebc4334b95f13948bac197bb145ef7b846890 (diff) |
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 <mchandras@suse.de>
-rw-r--r-- | Vagrantfile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |