diff options
Diffstat (limited to 'testcases')
-rwxr-xr-x | testcases/features/sfc/sfc.py | 8 | ||||
-rwxr-xr-x | testcases/features/sfc/sfc_colorado1.py | 8 | ||||
-rwxr-xr-x | testcases/features/sfc/tacker_client_install.sh | 2 |
3 files changed, 17 insertions, 1 deletions
diff --git a/testcases/features/sfc/sfc.py b/testcases/features/sfc/sfc.py index 96ea3ab39..92d7d8495 100755 --- a/testcases/features/sfc/sfc.py +++ b/testcases/features/sfc/sfc.py @@ -175,6 +175,14 @@ def main(): for sg in secgroups: os_utils.create_secgroup_rule(neutron_client, sg['id'], + 'ingress', 'udp', + port_range_min=67, + port_range_max=68) + os_utils.create_secgroup_rule(neutron_client, sg['id'], + 'egress', 'udp', + port_range_min=67, + port_range_max=68) + os_utils.create_secgroup_rule(neutron_client, sg['id'], 'ingress', 'tcp', port_range_min=22, port_range_max=22) diff --git a/testcases/features/sfc/sfc_colorado1.py b/testcases/features/sfc/sfc_colorado1.py index 8dd6c808e..d99c7135c 100755 --- a/testcases/features/sfc/sfc_colorado1.py +++ b/testcases/features/sfc/sfc_colorado1.py @@ -175,6 +175,14 @@ def main(): for sg in secgroups: os_utils.create_secgroup_rule(neutron_client, sg['id'], + 'ingress', 'udp', + port_range_min=67, + port_range_max=68) + os_utils.create_secgroup_rule(neutron_client, sg['id'], + 'egress', 'udp', + port_range_min=67, + port_range_max=68) + os_utils.create_secgroup_rule(neutron_client, sg['id'], 'ingress', 'tcp', port_range_min=22, port_range_max=22) diff --git a/testcases/features/sfc/tacker_client_install.sh b/testcases/features/sfc/tacker_client_install.sh index a3073177c..adb9a44be 100755 --- a/testcases/features/sfc/tacker_client_install.sh +++ b/testcases/features/sfc/tacker_client_install.sh @@ -21,7 +21,7 @@ ____EOF function envSetup() { apt-get install -y python-all debhelper fakeroot - pip install --upgrade python-keystoneclient==1.7.4 + #pip install --upgrade python-keystoneclient==1.7.4 chkPPkg stdeb } |