summaryrefslogtreecommitdiffstats
path: root/roles/openshift_openstack/tasks/populate-dns.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/openshift_openstack/tasks/populate-dns.yml')
-rw-r--r--roles/openshift_openstack/tasks/populate-dns.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/roles/openshift_openstack/tasks/populate-dns.yml b/roles/openshift_openstack/tasks/populate-dns.yml
index 080c3aca9..c03aceb94 100644
--- a/roles/openshift_openstack/tasks/populate-dns.yml
+++ b/roles/openshift_openstack/tasks/populate-dns.yml
@@ -1,3 +1,4 @@
+---
- name: "Generate list of private A records"
set_fact:
private_records: "{{ private_records | default([]) + [ { 'type': 'A', 'hostname': hostvars[item]['ansible_hostname'], 'ip': hostvars[item]['private_v4'] } ] }}"
@@ -119,8 +120,8 @@
# TODO(shadower): add a cleanup playbook that removes these records, too!
state: present
with_subelements:
- - "{{ openshift_openstack_dns_records_add | default({}) }}"
- - entries
+ - "{{ openshift_openstack_dns_records_add | default({}) }}"
+ - entries
register: nsupdate_add_result
until: nsupdate_add_result|succeeded
retries: 10