Jesse Pretorius f4893b621f Simplify test inventory
The previous inventory was 'dynamic' in that the host/group
information was added through a playbook. This then required
the playbook implementing the inventory to be executed if
the deployer wished to test any single playbook.

This implements a static inventory and group_vars to achieve
the same result, simplifying the test implementation and
providing greater flexibility when executing the test playbooks.

Change-Id: Ia5b35efd42955cc840990e798eee96a79926b134
2016-03-22 13:09:17 +00:00

47 lines
615 B
Plaintext

[all]
localhost ansible_connection=local ansible_become=True
infra1 ansible_host=10.100.100.101 ansible_become=True
openstack1 ansible_host=10.100.100.102 ansible_become=True
[hosts]
localhost
[all_containers]
infra1
openstack1
[designate_all:children]
designate_api
designate_central
designate_mdns
designate_pool_manager
designate_sink
[designate_api]
openstack1
[designate_central]
openstack1
[designate_mdns]
openstack1
[designate_pool_manager]
openstack1
[designate_sink]
openstack1
[keystone_all]
openstack1
[service_all:children]
rabbitmq_all
galera_all
[rabbitmq_all]
infra1
[galera_all]
infra1