1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Optionally only use UUIDs for openstack hosts on duplicates

The OpenStack inventory lists hostnames as the UUIDs because hostsnames
are not guarnateed to be unique on OpenStack. However, for the common
case, this is just confusing.

The new behavior is a visible change, so make it an opt-in via config.

Only turn the hostnames to UUIDs if there are duplicate hostnames.
This commit is contained in:
Monty Taylor 2015-12-03 07:04:24 -08:00
parent 1f8e484b70
commit 9f61144401
2 changed files with 50 additions and 10 deletions

View file

@ -32,6 +32,13 @@
# all of them and present them as one contiguous inventory. # all of them and present them as one contiguous inventory.
# #
# See the adjacent openstack.yml file for an example config file # See the adjacent openstack.yml file for an example config file
# There are two ansible inventory specific options that can be set in
# the inventory section.
# expand_hostvars controls whether or not the inventory will make extra API
# calls to fill out additional information about each server
# use_hostnames changes the behavior from registering every host with its UUID
# and making a group of its hostname to only doing this if the
# hostname in question has more than one server
import argparse import argparse
import collections import collections
@ -51,7 +58,7 @@ import shade.inventory
CONFIG_FILES = ['/etc/ansible/openstack.yaml'] CONFIG_FILES = ['/etc/ansible/openstack.yaml']
def get_groups_from_server(server_vars): def get_groups_from_server(server_vars, namegroup=True):
groups = [] groups = []
region = server_vars['region'] region = server_vars['region']
@ -76,6 +83,7 @@ def get_groups_from_server(server_vars):
groups.append(extra_group) groups.append(extra_group)
groups.append('instance-%s' % server_vars['id']) groups.append('instance-%s' % server_vars['id'])
if namegroup:
groups.append(server_vars['name']) groups.append(server_vars['name'])
for key in ('flavor', 'image'): for key in ('flavor', 'image'):
@ -106,17 +114,36 @@ def get_host_groups(inventory, refresh=False):
def get_host_groups_from_cloud(inventory): def get_host_groups_from_cloud(inventory):
groups = collections.defaultdict(list) groups = collections.defaultdict(list)
firstpass = collections.defaultdict(list)
hostvars = {} hostvars = {}
for server in inventory.list_hosts(): list_args = {}
if hasattr(inventory, 'extra_config'):
use_hostnames = inventory.extra_config['use_hostnames']
list_args['expand'] = inventory.extra_config['expand_hostvars']
else:
use_hostnames = False
for server in inventory.list_hosts(**list_args):
if 'interface_ip' not in server: if 'interface_ip' not in server:
continue continue
for group in get_groups_from_server(server): firstpass[server['name']].append(server)
groups[group].append(server['id']) for name, servers in firstpass.items():
hostvars[server['id']] = dict( if len(servers) == 1 and use_hostnames:
server = servers[0]
hostvars[name] = dict(
ansible_ssh_host=server['interface_ip'], ansible_ssh_host=server['interface_ip'],
openstack=server, openstack=server)
) for group in get_groups_from_server(server, namegroup=False):
groups[group].append(server['name'])
else:
for server in servers:
server_id = server['id']
hostvars[server_id] = dict(
ansible_ssh_host=server['interface_ip'],
openstack=server)
for group in get_groups_from_server(server, namegroup=True):
groups[group].append(server_id)
groups['_meta'] = {'hostvars': hostvars} groups['_meta'] = {'hostvars': hostvars}
return groups return groups
@ -171,11 +198,21 @@ def main():
try: try:
config_files = os_client_config.config.CONFIG_FILES + CONFIG_FILES config_files = os_client_config.config.CONFIG_FILES + CONFIG_FILES
shade.simple_logging(debug=args.debug) shade.simple_logging(debug=args.debug)
inventory = shade.inventory.OpenStackInventory( inventory_args = dict(
refresh=args.refresh, refresh=args.refresh,
config_files=config_files, config_files=config_files,
private=args.private, private=args.private,
) )
if hasattr(shade.inventory.OpenStackInventory, 'extra_config'):
inventory_args.update(dict(
config_key='ansible',
config_defaults={
'use_hostnames': False,
'expand_hostvars': True,
}
))
inventory = shade.inventory.OpenStackInventory(**inventory_args)
if args.list: if args.list:
output = get_host_groups(inventory, refresh=args.refresh) output = get_host_groups(inventory, refresh=args.refresh)

View file

@ -26,3 +26,6 @@ clouds:
username: stack username: stack
password: stack password: stack
project_name: stack project_name: stack
ansible:
use_hostnames: True
expand_hostvars: False