Last active
July 12, 2018 09:26
-
-
Save evrardjp/bc2c4a46fa83a2c728e36ab99840fc5e to your computer and use it in GitHub Desktop.
osa static inventory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aio1 ansible_connection=local ansible_host=127.0.0.1 | |
# is_metal=True | |
## Setup hosts | |
[physical_hosts] | |
aio1 | |
## Setup infra | |
[etcd_all] | |
[galera_all] | |
aio1 | |
[haproxy] | |
[memcached] | |
aio1 | |
[rabbitmq_all] | |
aio1 | |
[repo_all] | |
aio1 | |
[rsyslog] | |
[unbound] | |
[utility_all] | |
aio1 | |
## Setup openstack | |
[keystone_all] | |
aio1 | |
# Glance | |
[glance_api] | |
aio1 | |
[glance_registry] | |
aio1 | |
# Neutron | |
[neutron_agent] | |
aio1 | |
[neutron_dhcp_agent] | |
aio1 | |
[neutron_l3_agent] | |
aio1 | |
[neutron_linuxbridge_agent] | |
aio1 | |
[neutron_metadata_agent] | |
aio1 | |
[neutron_server] | |
aio1 | |
# Cinder | |
[cinder_api] | |
aio1 | |
[cinder_backup] | |
aio1 | |
[cinder_scheduler] | |
aio1 | |
[cinder_volume] | |
aio1 | |
# Nova | |
[nova_conductor] | |
aio1 | |
[nova_api_placement] | |
aio1 | |
[nova_console] | |
aio1 | |
[nova_scheduler] | |
aio1 | |
[nova_api_os_compute] | |
aio1 | |
[nova_consoleauth] | |
aio1 | |
[nova_api_metadata] | |
aio1 | |
[nova_compute] | |
aio1 | |
# Heat | |
[heat_api] | |
aio1 | |
[heat_api_cfn] | |
aio1 | |
[heat_api_cloudwatch] | |
aio1 | |
[heat_engine] | |
aio1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
internal_lb_vip_address: 172.29.236.100 | |
# The external IP is quoted simply to ensure that the .aio file can be used as input | |
# dynamic inventory testing. | |
external_lb_vip_address: "10.0.2.15" | |
rabbitmq_hosts_entries: [] | |
neutron_provider_networks: | |
network_types: "vxlan,flat" | |
network_mappings: "flat:eth12" | |
network_vxlan_ranges: "1:1000" | |
neutron_local_ip: "{{ ansible_host }}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment