From 5a94beb62293151ef6f4e94ed500579de1f3673e Mon Sep 17 00:00:00 2001 From: Panagiotis Karalis Date: Thu, 7 Jun 2018 16:11:33 +0300 Subject: SNAPS via functest with flavor metadata configurable The required data for the SNAPS flavors are sent through the config_functest yaml file in order for the SNAPS scenarios to be configured accordingly. If the config_functest yaml file includes empty flavor_extra_specs or there is not included this parameter, the SNAPS scenarios will be executed using the hardcoded value. Change-Id: I4ef46d1fe93497d658414170a72c4520d8f37808 Signed-off-by: Panagiotis Karalis --- functest/opnfv_tests/openstack/snaps/snaps_test_runner.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'functest/opnfv_tests/openstack/snaps') diff --git a/functest/opnfv_tests/openstack/snaps/snaps_test_runner.py b/functest/opnfv_tests/openstack/snaps/snaps_test_runner.py index 7b111ed1b..70327ff89 100644 --- a/functest/opnfv_tests/openstack/snaps/snaps_test_runner.py +++ b/functest/opnfv_tests/openstack/snaps/snaps_test_runner.py @@ -44,7 +44,8 @@ class SnapsTestRunner(unit.Suite): self.use_keystone = ( getattr(config.CONF, 'snaps_use_keystone') == 'True') - self.flavor_metadata = getattr(config.CONF, 'flavor_extra_specs', None) + self.flavor_metadata = getattr(config.CONF, 'snaps_flavor_extra_specs', + None) self.logger.info("Using flavor metadata '%s'", self.flavor_metadata) self.image_metadata = None -- cgit 1.2.3-korg