openstacksdk/openstack/tests/ansible
Rui Chen 7590beafa0 Add more options to enable ansible testing feature
1. Specified volume size for boot from volume server scenario.
2. Create port in default security group or no security group.

Change-Id: If2ccf726f518a5d6ba72bece09504c0f005a08f1
Related-Patch: https://review.openstack.org/#/c/582459/
2018-08-09 10:53:59 +08:00
..
hooks Update python-openstacksdk references to openstacksdk 2018-03-23 12:31:24 -05:00
roles Add more options to enable ansible testing feature 2018-08-09 10:53:59 +08:00
README.txt Merge tox, tests and other support files 2017-10-04 14:51:08 -05:00
run.yml Merge remote-tracking branch 'shade/master' into merge-shade 2017-10-13 06:34:45 -05:00

README.txt

This directory contains a testing infrastructure for the Ansible
OpenStack modules. You will need a clouds.yaml file in order to run
the tests. You must provide a value for the `cloud` variable for each
run (using the -e option) as a default is not currently provided.

If you want to run these tests against devstack, it is easiest to use
the tox target. This assumes you have a devstack-admin cloud defined
in your clouds.yaml file that points to devstack. Some examples of
using tox:

    tox -e ansible

    tox -e ansible keypair security_group

If you want to run these tests directly, or against different clouds,
then you'll need to use the ansible-playbook command that comes with
the Ansible distribution and feed it the run.yml playbook. Some examples:

    # Run all module tests against a provider
    ansible-playbook run.yml -e "cloud=hp"

    # Run only the keypair and security_group tests
    ansible-playbook run.yml -e "cloud=hp" --tags "keypair,security_group"

    # Run all tests except security_group
    ansible-playbook run.yml -e "cloud=hp" --skip-tags "security_group"