aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functest/odl-sfc/config.py
diff options
context:
space:
mode:
authorManuel Buil <manuelbuil87@gmail.com>2016-12-13 14:55:37 +0000
committerGerrit Code Review <gerrit@opnfv.org>2016-12-13 14:55:37 +0000
commitb7db5146456f580e8596ef47cf7aee8e0ac18598 (patch)
treec381469f48326ce61024bc5c3ef8c58fe87f4509 /tests/functest/odl-sfc/config.py
parent4d3f083c051b74bd575a333a5853fdd85bbeeafe (diff)
parent824e0073bd59b9cd81b23ac1ae7b4afaf5b9e5e3 (diff)
Merge "Move flavor creations params to config file"
Diffstat (limited to 'tests/functest/odl-sfc/config.py')
-rw-r--r--tests/functest/odl-sfc/config.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/functest/odl-sfc/config.py b/tests/functest/odl-sfc/config.py
index d7498327..3b76e3bc 100644
--- a/tests/functest/odl-sfc/config.py
+++ b/tests/functest/odl-sfc/config.py
@@ -36,6 +36,12 @@ class CommonConfig(object):
}
self.flavor = ft_utils.get_parameter_from_yaml(
"defaults.flavor", self.config_file)
+ self.ram_size_in_mb = ft_utils.get_parameter_from_yaml(
+ "defaults.ram_size_in_mb", self.config_file)
+ self.disk_size_in_gb = ft_utils.get_parameter_from_yaml(
+ "defaults.disk_size_in_gb", self.config_file)
+ self.vcpu_count = ft_utils.get_parameter_from_yaml(
+ "defaults.vcpu_count", self.config_file)
self.image_name = ft_utils.get_parameter_from_yaml(
"defaults.image_name", self.config_file)
self.image_file_name = ft_utils.get_parameter_from_yaml(