From 5b1afb12f81ea924085317535073c14d12d7a80f Mon Sep 17 00:00:00 2001 From: Liping Mao Date: Tue, 17 May 2016 21:42:35 +0800 Subject: [PATCH] [Tryfix] Increase the default RAM in vagrantfile When I create two containers and one tiny vm, I find the neutron-ovs-agent is crash due to lack of memory. I know we can add memory by modify VAGRANT_KURYR_VM_MEMORY. But I think create two containers and one tiny vm is very basic requirement when test kuryr, the default ram should support this. Change-Id: I6758ffb104d8ed91135ec58b0c2b794e7fce10c9 Closes-Bug: #1582716 --- contrib/vagrant/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/vagrant/Vagrantfile b/contrib/vagrant/Vagrantfile index 37ce6143..e697671f 100644 --- a/contrib/vagrant/Vagrantfile +++ b/contrib/vagrant/Vagrantfile @@ -2,7 +2,7 @@ VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| - VM_MEMORY = ENV.fetch('VAGRANT_KURYR_VM_MEMORY', 4096) + VM_MEMORY = ENV.fetch('VAGRANT_KURYR_VM_MEMORY', 6144) VM_CPUS = ENV.fetch('VAGRANT_KURYR_VM_CPUS', 2) RUN_DEVSTACK = ENV.fetch('VAGRANT_KURYR_RUN_DEVSTACK', 'true')