Remove extraneous splits

The node.hostname should always be short.
This commit is contained in:
Joshua Boniface 2021-11-11 17:31:56 -05:00
parent 243c910d6d
commit b24e539252
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
# pvcnoded configuration # pvcnoded configuration
# {{ ansible_managed }} # {{ ansible_managed }}
pvc: pvc:
node: {% for node in pvc_nodes if node.hostname == this_node %}{{ node.hostname.split('.')[0] }}{% endfor %} node: {% for node in pvc_nodes if node.hostname == this_node %}{{ node.hostname }}{% endfor %}
debug: False debug: False
functions: functions:
@ -13,7 +13,7 @@ pvc:
cluster: cluster:
coordinators: coordinators:
{% for node in pvc_nodes if node.is_coordinator %} {% for node in pvc_nodes if node.is_coordinator %}
- {{ node.hostname.split('.')[0] }} - {{ node.hostname }}
{% endfor %} {% endfor %}
networks: networks:
upstream: upstream: