add preffix option to hostname creation

add the option for the user to add a hostname_prefix in case he wants to add a prefix to the hostname, focused on AAP or AWX that hostnames are by default the name shown in the UI
This commit is contained in:
VALKIRIA ACUATICA 2024-03-08 11:01:43 +01:00 committed by GitHub
parent d49925c96d
commit 78ff3ff0d8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -112,6 +112,13 @@ DOCUMENTATION = """
- Unless this option is enabled, the C(image) host variable will be C(null) - Unless this option is enabled, the C(image) host variable will be C(null)
type: bool type: bool
default: False default: False
hostname_prefix:
description: Ooptional preffix to add beofre a hostname is created, it could be static value or dynamic value
required: False
type: string
default: ''
""" """
EXAMPLES = """ EXAMPLES = """
@ -168,12 +175,13 @@ class GcpMockModule(object):
class GcpInstance(object): class GcpInstance(object):
def __init__( def __init__(
self, json, hostname_ordering, project_disks, should_format=True, name_suffix="" self, json, hostname_ordering, project_disks, should_format=True, name_suffix="", hostname_prefix=""
): ):
self.hostname_ordering = hostname_ordering self.hostname_ordering = hostname_ordering
self.project_disks = project_disks self.project_disks = project_disks
self.name_suffix = name_suffix self.name_suffix = name_suffix
self.json = json self.json = json
self.hostname_prefix = hostname_prefix
if should_format: if should_format:
self.convert() self.convert()
@ -244,7 +252,7 @@ class GcpInstance(object):
elif order == "private_ip": elif order == "private_ip":
name = self._get_privateip() name = self._get_privateip()
elif order == "name": elif order == "name":
name = self.json["name"] + self.name_suffix name = self.hostname_prefix + self.json["name"] + self.name_suffix
else: else:
raise AnsibleParserError("%s is not a valid hostname precedent" % order) raise AnsibleParserError("%s is not a valid hostname precedent" % order)
@ -425,6 +433,7 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
:param config_data: configuration data :param config_data: configuration data
:param format_items: format items or not :param format_items: format items or not
""" """
hostname_prefix = self.get_option("hostname_prefix")
if not items: if not items:
return return
@ -436,7 +445,7 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
for host_json in items: for host_json in items:
host = GcpInstance( host = GcpInstance(
host_json, hostname_ordering, project_disks, format_items, name_suffix host_json, hostname_ordering, project_disks, format_items, name_suffix, hostname_prefix
) )
self._populate_host(host) self._populate_host(host)