From ebf414e9866497535f8aab7d6eda91f065440de8 Mon Sep 17 00:00:00 2001 From: Dan Bode Date: Mon, 25 Feb 2013 17:08:01 -0800 Subject: [PATCH] set compute2 to use 8GB RAM this is for the tempest tests. they tend to spin up/down VMS really quickly, and I have seen failures where the compute VM thinks its out of RAM. I suspect that increasing the RAM used for the test compute host will resolve the issue. --- Vagrantfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index ba83e0b..0140303 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -53,9 +53,11 @@ Vagrant::Config.run do |config| 'ip1' => '172.16.0.4' } }, + # huge compute instance with tons of RAM + # intended to be used for tempest tests {'compute2' => { - 'memory' => 2512, + 'memory' => 8000, 'ip1' => '172.16.0.14' } },