2019-06-09 00:11:06 -04:00
|
|
|
# Local system hosts file
|
|
|
|
# {{ ansible_managed }}
|
|
|
|
|
2019-06-11 16:32:25 -04:00
|
|
|
127.0.0.1 localhost
|
|
|
|
::1 ip6-localhost ip6-loopback
|
2019-06-09 00:11:06 -04:00
|
|
|
ff02::1 ip6-allmodes
|
|
|
|
ff02::2 ip6-allrouters
|
2019-06-11 16:32:25 -04:00
|
|
|
|
|
|
|
{% for node in pvc_nodes %}
|
|
|
|
{{ node.cluster_ip }} {{ node.hostname }}.{{ pvc_cluster_domain }} {{ node.hostname }}
|
|
|
|
{{ node.storage_ip }} {{ node.hostname }}.{{ pvc_storage_domain }}
|
|
|
|
{% endfor %}
|