aboutsummaryrefslogtreecommitdiffstats
path: root/sfc/lib
diff options
context:
space:
mode:
authorManuel Buil <mbuil@suse.com>2018-06-12 10:27:12 +0200
committerManuel Buil <mbuil@suse.com>2018-06-12 13:19:06 +0000
commit742a1237a5511930ff2726819e6fd2a320e7fd06 (patch)
tree6e3d032f612dc22b9ba89aab6603335af0adff99 /sfc/lib
parent37d5bca7cc52709e89d434345560cfe1d90e2e52 (diff)
Remove the pike specific files
We are already preparing for Gambia release and that means Openstack Queens for the traditional release track. Therefore, we can remove the specific configs for Openstack Pike Change-Id: Ib49a53e73ae1020aaead8a897dff8733147d87ac Signed-off-by: Manuel Buil <mbuil@suse.com>
Diffstat (limited to 'sfc/lib')
-rw-r--r--sfc/lib/config.py17
1 files changed, 1 insertions, 16 deletions
diff --git a/sfc/lib/config.py b/sfc/lib/config.py
index e6149081..541f6847 100644
--- a/sfc/lib/config.py
+++ b/sfc/lib/config.py
@@ -43,22 +43,7 @@ class CommonConfig(object):
self.vnffgd_dir = os.path.join(self.sfc_test_dir, "vnffgd-templates")
self.functest_results_dir = os.path.join(
getattr(config.CONF, 'dir_results'), "odl-sfc")
-
- # We need to know the openstack version in order to use one config or
- # another. For Pike we will use config-pike.yaml. Queens and Rocky
- # will use config.yaml
- if 'OPENSTACK_OSA_VERSION' in os.environ:
- if os.environ['OPENSTACK_OSA_VERSION'] == 'stable/pike':
- self.config_file = os.path.join(self.sfc_test_dir,
- "config-pike.yaml")
- else:
- self.config_file = os.path.join(self.sfc_test_dir,
- "config.yaml")
- else:
- self.config_file = os.path.join(self.sfc_test_dir,
- "config-pike.yaml")
-
- logger.info("The config file used is {}".format(self.config_file))
+ self.config_file = os.path.join(self.sfc_test_dir, "config.yaml")
self.vim_file = os.path.join(self.sfc_test_dir, "register-vim.json")
self.installer_type = env.get('INSTALLER_TYPE')