Add hostsnames properly

This commit is contained in:
Joshua Boniface 2023-09-01 15:42:19 -04:00
parent 8fbbce3d16
commit 9bb513e695
1 changed files with 7 additions and 1 deletions

View File

@ -1,6 +1,12 @@
# Local system hosts file
# {{ ansible_managed }}
::1 localhost ip6-localhost ip6-loopback
127.0.0.1 localhost
::1 ip6-localhost ip6-loopback
ff02::1 ip6-allmodes
ff02::2 ip6-allrouters
{% for node in pvc_nodes %}
{{ node.cluster_ip }} {{ node.hostname }}.{{ pvc_cluster_domain }} {{ node.hostname }}
{{ node.storage_ip }} {{ node.hostname }}.{{ pvc_storage_domain }}
{% endfor %}