30bc02a589
This commit does the following: - fully defines the inventory rather than having test-prepare-host.yml add containers to it - updates test-prepare-keys.yml to use localhost instead of 127.0.0.1, uses become_user=jenkins instead of become=false, and removes redundant connection - updates test-prepare-host.yml by changing 127.0.0.1 to localhost, and removes mocking ansible_env - groups vars in defined in each individual file into a single test-vars.yml file - installs libffi-dev in test-install-neutron.yml, which is necessary to build neutron (installed by default in gate, so not an issue there) - switches neutron_provider_networks to vxlan, otherwise neutron-linuxbridge-agent doesn't actually work correctly Change-Id: Ice7e4762fb184d9172c6b8192f4e6d1732654bb9
56 lines
812 B
Plaintext
56 lines
812 B
Plaintext
[all]
|
|
localhost ansible_connection=local ansible_become=True
|
|
infra1 ansible_host=10.100.100.2 ansible_become=True ansible_user=root
|
|
openstack1 ansible_host=10.100.100.3 ansible_become=True ansible_user=root
|
|
|
|
[all_containers]
|
|
infra1
|
|
openstack1
|
|
|
|
[rabbitmq_all]
|
|
infra1
|
|
|
|
[galera_all]
|
|
infra1
|
|
|
|
[service_all:children]
|
|
rabbitmq_all
|
|
galera_all
|
|
|
|
[keystone_all]
|
|
openstack1
|
|
|
|
[neutron_agent]
|
|
openstack1
|
|
|
|
[neutron_dhcp_agent]
|
|
openstack1
|
|
|
|
[neutron_linuxbridge_agent]
|
|
openstack1
|
|
|
|
[neutron_metering_agent]
|
|
openstack1
|
|
|
|
[neutron_l3_agent]
|
|
openstack1
|
|
|
|
[neutron_lbaas_agent]
|
|
openstack1
|
|
|
|
[neutron_metadata_agent]
|
|
openstack1
|
|
|
|
[neutron_server]
|
|
openstack1
|
|
|
|
[neutron_all:children]
|
|
neutron_agent
|
|
neutron_dhcp_agent
|
|
neutron_linuxbridge_agent
|
|
neutron_metering_agent
|
|
neutron_l3_agent
|
|
neutron_lbaas_agent
|
|
neutron_metadata_agent
|
|
neutron_server
|