Openstack Component Testing Ansible Roles
Octario is a collection of Ansible roles and playbooks for testing OpenStack Components on RHEL/CentOS.
It supports the following testers or test frameworks:
- PEP8
- unit
- functional
- fullstack
- API (In-Tree)
- Tempest
- Robot
- ansible installed on the system ( ansible >= 2 ).
- Component source code. Can be downloaded using
git clone git://git.openstack.org/openstack/<component_name>.git
.
Note: octario
is not provisioning the node on which it will run the tests. It's assumed
that the tester node is provided by the user by specifying it in the hosts file.
First, create an inventory file that will include the IP address or the hostname of your tester node.
vi hosts
[tester]
my_tester_host ansible_user=cloud-user
Edit octario.yml
with your component details. Make sure to specify name and version!
component:
name: nova
version: 9
Run octario!. Choose one of testers and run the following command in octario root directory
ansible-playbook -vvv -i hosts playbooks/pep8.yml --extra-vars @octario.yml
pep8.yml can be replaced with [unittest, functional, api, scenario].yml
You can specify your own tester
export TESTER=my_new_cool_tester
ansible-playbook -vvv -i hosts playbooks/custom-tester.yml --extra-vars @octario.yml
You can use external role with octario
.
cp -r new_role octario/roles
export ROLE=new_role
ansible-playbook -vvv -i hosts playbooks/custom-role.yml --extra-vars @octario.yml
The following drawing added to simplify work-flow overview of octario
for simple testers
as pep8, unittest and functional.
The following drawing describes specifically how RPM patching done with Octario.
To inclue patch_rpm role, run playbooks/-with-patching.yml
See the /doc directory of this repo.