aboutsummaryrefslogtreecommitdiffstats
path: root/functest/opnfv_tests
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2017-07-12 08:04:29 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-07-12 08:04:29 +0000
commitf81e3d2cf3cf9b54f940a6e0ae0ea68db0e1f589 (patch)
tree3865789b88e930b0a6d6e87727d2cf7403c31bce /functest/opnfv_tests
parent6ac8b1f359a2d47eb66f1111c205ebccac314818 (diff)
parent8958f985e4fba10db7ad67a96a536f1d7660985a (diff)
Merge "Add odl configurations for odl testcase in daisy environment"
Diffstat (limited to 'functest/opnfv_tests')
-rw-r--r--functest/opnfv_tests/sdn/odl/odl.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/functest/opnfv_tests/sdn/odl/odl.py b/functest/opnfv_tests/sdn/odl/odl.py
index 67bf66e3..ede0fc50 100644
--- a/functest/opnfv_tests/sdn/odl/odl.py
+++ b/functest/opnfv_tests/sdn/odl/odl.py
@@ -235,6 +235,10 @@ class ODLTests(testcase.TestCase):
kwargs['odlip'] = os.environ['SDN_CONTROLLER']
elif installer_type == 'compass':
kwargs['odlwebport'] = '8181'
+ elif installer_type == 'daisy':
+ kwargs['odlip'] = os.environ['SDN_CONTROLLER_IP']
+ kwargs['odlwebport'] = '8181'
+ kwargs['odlrestconfport'] = '8087'
else:
kwargs['odlip'] = os.environ['SDN_CONTROLLER_IP']
except KeyError as ex: