Files
openstack-ansible-rabbitmq_…/tests/inventory
Jimmy McCrory 1b9035aa79 Reorganize test playbooks
The following changes have been made to reorganize the structure of this
role's test playbooks, bringing them into line with other
OpenStack-Ansible roles:
  - move each playbook to an individual file
  - rename playbooks descriptively
  - define hosts and groups directly in the inventory file
  - include group vars required by containers
  - store extra variables in a single shared test-vars file
  - reduce lxc network dhcp network range to avoid conflicts with static
    container addresses
  - include callback plugin for human readable logging of test tasks

Change-Id: I6aa877b10945a265d7484c9aacb3c232d82d8ebb
2016-05-03 06:18:45 -07:00

14 lines
477 B
Plaintext

[all]
localhost ansible_connection=local ansible_become=True
container1 ansible_ssh_host=10.100.100.101 ansible_host=10.100.100.101 ansible_become=True ansible_user=root
container2 ansible_ssh_host=10.100.100.102 ansible_host=10.100.100.102 ansible_become=True ansible_user=root
container3 ansible_ssh_host=10.100.100.103 ansible_host=10.100.100.103 ansible_become=True ansible_user=root
[rabbitmq_all]
container1
container2
container3
[all_containers:children]
rabbitmq_all