Merge "Add fqdn and cloud_domain templates to tripleo-hieradata"

This commit is contained in:
Zuul 2019-07-10 17:58:06 +00:00 committed by Gerrit Code Review
commit 0cf0b3016d
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,3 @@
{
"tripleo::clouddomain": "{{cloud_domain}}"
}

View File

@ -0,0 +1,11 @@
{
"fqdn_ctlplane": "{{ inventory_hostname ~ '.ctlplane.' ~ cloud_domain }}",
"fqdn_canonical": "{{ inventory_hostname ~ '.' ~ cloud_domain }}"{% if enabled_networks | length > 0 and role_networks | length > 0 %},{% endif %}
{% for network in enabled_networks %}
{% if network in role_networks %}
"fqdn_{{ networks[network]['name_lower'] }}": "{{ inventory_hostname ~ '.' ~ network | lower ~ '.' ~ cloud_domain }}"
{%- endif %}{% if not loop.last and loop.nextitem | default("") in role_networks %},
{% endif %}
{%- endfor %}
}