From: George Paraskevopoulos Date: Thu, 16 Feb 2017 14:54:40 +0000 (+0200) Subject: [odl-sfc] Add symmetric option for sfc_create X-Git-Tag: danube.1.RC1~122^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;ds=sidebyside;h=refs%2Fchanges%2F37%2F28837%2F2;p=functest.git [odl-sfc] Add symmetric option for sfc_create Change-Id: Iead7767b936376c2f5b6c6a5584734ef074c1346 Signed-off-by: George Paraskevopoulos --- diff --git a/functest/utils/openstack_tacker.py b/functest/utils/openstack_tacker.py index f3597965f..d5d7858c5 100644 --- a/functest/utils/openstack_tacker.py +++ b/functest/utils/openstack_tacker.py @@ -194,7 +194,8 @@ def list_sfcs(tacker_client, verbose=False): def create_sfc(tacker_client, sfc_name, chain_vnf_ids=None, - chain_vnf_names=None): + chain_vnf_names=None, + symmetrical=False): try: sfc_body = { 'sfc': { @@ -203,6 +204,8 @@ def create_sfc(tacker_client, sfc_name, 'chain': [] } } + if symmetrical: + sfc_body['sfc']['symmetrical'] = True if chain_vnf_ids is not None: sfc_body['sfc']['chain'] = chain_vnf_ids else: