summaryrefslogtreecommitdiffstats
path: root/snaps/openstack/utils/tests/heat_utils_tests.py
diff options
context:
space:
mode:
authorDelia Popescu <delia.popescu@enea.com>2017-08-08 10:32:16 +0300
committerDelia Popescu <delia.popescu@enea.com>2017-08-08 07:43:45 +0000
commit0428c2d9e46f4ddd4a0458dbf8a48065eacabe66 (patch)
tree93f8c99af840e060a7c1f329f37923404760ce52 /snaps/openstack/utils/tests/heat_utils_tests.py
parent27b8b1c246d63c14f112a99362873fe887c13c10 (diff)
Configure requirements for AAVMF(UEFI) with Cirros image on AArch64
Cirros image on AArch64 with AAVMF(UEFI) requires at least 256MB RAM. The default 128MB was changed to 256MB. Change-Id: I7414de519dcb53337f83690d1470ea672cec739b Signed-off-by: Delia Popescu <delia.popescu@enea.com> JIRA: ARMBAND-279
Diffstat (limited to 'snaps/openstack/utils/tests/heat_utils_tests.py')
-rw-r--r--snaps/openstack/utils/tests/heat_utils_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/snaps/openstack/utils/tests/heat_utils_tests.py b/snaps/openstack/utils/tests/heat_utils_tests.py
index 90cc934..16ce9fb 100644
--- a/snaps/openstack/utils/tests/heat_utils_tests.py
+++ b/snaps/openstack/utils/tests/heat_utils_tests.py
@@ -89,7 +89,7 @@ class HeatUtilsCreateStackTests(OSComponentTestCase):
# Create Flavor
self.flavor_creator = OpenStackFlavor(
self.os_creds,
- FlavorSettings(name=guid + '-flavor', ram=128, disk=10, vcpus=1))
+ FlavorSettings(name=guid + '-flavor', ram=256, disk=10, vcpus=1))
self.flavor_creator.create()
env_values = {'image_name': self.image_creator.image_settings.name,