summaryrefslogtreecommitdiffstats
path: root/requirements.txt
AgeCommit message (Collapse)AuthorFilesLines
2019-01-25Add missing licences in requirements.txtCédric Ollivier1-2/+2
Change-Id: Ic03c3aea6984458a6fc987bb278f6f25459bc2db Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
2018-10-03Updates to the ansible API implementation to allow forspisarski1-0/+2
playbooks to be applied directly against the localhost as well as removing the return code in favor of reliance of unchecked Errors/Exceptions. Change-Id: Ib963aa9b4f5a75010d8f7b25db7d66a2e1950cce Signed-off-by: spisarski <s.pisarski@cablelabs.com>
2018-09-17Updated ansible API calls to Ansible library version >=2.4spisarski1-1/+1
JIRA: SNAPS-287 Change-Id: Id422bb6e85eee249a2cf7969130b472e110a7662 Signed-off-by: spisarski <s.pisarski@cablelabs.com>
2018-05-16Restricting the magnum-pythonclient version to 2.1-2.2spisarski1-1/+1
Using version >2.2 results in a runtime exception. Change-Id: I1c5d5c650004981f13a350d04c3ab359fc98799b Signed-off-by: spisarski <s.pisarski@cablelabs.com>
2018-05-09Patch to make flavor configuration for tests more flexible.spisarski1-1/+1
Also fixed potential issues with downloading images from https locations JIRA: SNAPS-254 Change-Id: Ib81569df499bbf0652c2025fc7de37af92525f7f Signed-off-by: spisarski <s.pisarski@cablelabs.com>
2018-04-29Fix NoneType in create_router.pyCédric Ollivier1-1/+0
It lets Neutron handle str or unicode instead of returning None. It reverts the first proposal [1] which raises side effects [2]. [1] https://gerrit.opnfv.org/gerrit/#/c/56171/ [2] https://build.opnfv.org/ci/view/functest/job/functest-compass-baremetal-daily-master/126/console Change-Id: I1b45c7d6118321dd67343f31253f154abae73655 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
2018-04-21Fix NoneType error when creating routerLinda Wang1-0/+1
Change-Id: Icef5f8a769b5c33da68b7da33ac8ba87132830e2 Signed-off-by: Linda Wang <wangwulin@huawei.com>
2018-04-12Updated from global requirementsCédric Ollivier1-6/+6
Change-Id: Ib6c90b7a0fc5f23a9882c3ca4cc4d3031cebe5b9 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
2018-03-12Added support for running tests in parallel.spisarski1-0/+1
JIRA: SNAPS-215 Change-Id: I94923a9f184b0d370159b499919e8fc20a2fef90 Signed-off-by: spisarski <s.pisarski@cablelabs.com>
2018-01-29Changed the way floating IPs are getting assigned to VMs as the previousspisarski1-1/+1
means was not compatible with python-novaclient==10.0.0 JIRA: SNAPS-258 Change-Id: I56f7a8341c81e0ae5596f67d4d15ef6c26e0e680 Signed-off-by: spisarski <s.pisarski@cablelabs.com>
2018-01-23Nova 10 breaks the libspisarski1-1/+1
Change-Id: Iadb5e44836258e5d9a89090c4b0302d2689a40c5 Signed-off-by: spisarski <s.pisarski@cablelabs.com>
2018-01-23Added password support for SSH and Ansiblespisarski1-1/+1
Additional protections when initializing network resources Enhanced playbook runner variable support Change-Id: Id897c4ece1de706afbc52d0a034ca3bfb68fdce3 Signed-off-by: spisarski <s.pisarski@cablelabs.com>
2017-11-15Updated from global requirementsCédric Ollivier1-1/+4
Change-Id: I9fa229d0216b90f7619d1fe5e9f5c35be8899d19 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
2017-11-09Initial patch to begin adding support for Magnum.spisarski1-0/+1
JIRA: SNAPS-212 Change-Id: I5f72fe9c28fe5cdd61546eee828becd034f8aff9 Signed-off-by: spisarski <s.pisarski@cablelabs.com>
2017-10-30Sync requirements with OpenStack PikeCédric Ollivier1-6/+6
OPNFV F-release is built on top of OpenStack Pike. Functest depends on SNAPS and requires this update. It conforms with the requirement management cleant for E-release [1]. [1] https://wiki.opnfv.org/display/functest/Requirements+management Change-Id: Ifff3db55f8b2f03a91b43fb542328300c7b7b4a6 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
2017-10-16First of several patches for adding volume support.spisarski1-0/+1
* Added volume API version attribute to OSCreds * Created utility for interfacing with the Cinder APIs * Created QoS creator * Added new tests to test_suite_builder.py JIRA: SNAPS-195, SNAPS-194 Change-Id: I0c6a53b4cba6efea3e92d909b94b259fa07a35c3 Signed-off-by: spisarski <s.pisarski@cablelabs.com>
2017-10-10Restricted Ansible version to >=2.1 && < 2.4spisarski1-1/+1
ansible_utils.py leverages the class ansible.vars.VariableManager which no longer exists in Ansible 2.4.x JIRA: SNAPS-187 Change-Id: I3e92e5addb7251554d6ec9befa61bfcc9e1376ef Signed-off-by: spisarski <s.pisarski@cablelabs.com>
2017-06-30Sync requirements.txt with OpenStack (novaclient)Cédric Ollivier1-1/+1
It completes "Use neutron to create floating IPs" [1] [1] https://gerrit.opnfv.org/gerrit/#/c/36389/ Change-Id: I11c591d86509fa41b4b0c4a7a758ff0ceed321c2 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
2017-06-22Use neutron to create floating IPs.spisarski1-1/+1
This patch moves the floating IP creation out of nova and into neutron. Other changes include the use of domain objects for VM and Floating IP instances, addition of new nova_utils tests to exercise the create server functionality, and more PEP8 compliance. JIRA: SNAPS-92 Change-Id: I16c12b26b56008901633e90ae307586ad2045f9b Signed-off-by: spisarski <s.pisarski@cablelabs.com>
2017-06-14Leverage on pbr (Python Build Reasonableness)Cédric Ollivier1-0/+9
It also updates requirements according to OpenStack stable/ocata except for nova client version as snaps needs nova support of floating IP which has been removed in pike [1] (8.0.0 [2]). It must be reverted to >=6.0.0,!=7.0.0 as soon as snaps calls the related neutron commands. [1] https://github.com/openstack/python-novaclient/blob/master/releasenotes/notes/pike-rm-deprecated-net-272aeb62b329a5bc.yaml [2] https://docs.openstack.org/releasenotes/python-novaclient/unreleased.html Change-Id: Iaa0285471da5f2f73cbfef038c9902e1c39fa009 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>