Tomas Sedovic 7 lat temu
rodzic
commit
67791867ab

+ 0 - 1
roles/openshift_openstack/defaults/main.yml

@@ -51,7 +51,6 @@ openshift_openstack_full_dns_domain: "{{ (openshift_openstack_clusterid|trim ==
 openshift_openstack_app_subdomain: "apps"
 
 
-
 # heat vars
 openshift_openstack_clusterid: openshift
 openshift_openstack_stack_name: "{{ openshift_openstack_clusterid }}.{{ openshift_openstack_public_dns_domain }}"

+ 3 - 2
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