populate-dns.yml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. ---
  2. - name: "Generate list of private A records"
  3. set_fact:
  4. private_records: "{{ private_records | default([]) + [ { 'type': 'A', 'hostname': hostvars[item]['ansible_hostname'] + openshift_openstack_private_hostname_suffix, 'ip': hostvars[item]['private_v4'] } ] }}"
  5. with_items: "{{ groups['cluster_hosts'] }}"
  6. - name: "Add wildcard records to the private A records for infrahosts"
  7. set_fact:
  8. private_records: "{{ private_records | default([]) + [ { 'type': 'A', 'hostname': '*.' + openshift_openstack_app_subdomain, 'ip': hostvars[item]['private_v4'] } ] }}"
  9. with_items: "{{ groups['infra_hosts'] }}"
  10. - name: "Add public master cluster hostname records to the private A records (single master)"
  11. set_fact:
  12. private_records: "{{ private_records | default([]) + [ { 'type': 'A', 'hostname': (hostvars[groups.masters[0]].openshift_master_cluster_public_hostname | replace(openshift_openstack_full_dns_domain, ''))[:-1], 'ip': hostvars[groups.masters[0]].private_v4 } ] }}"
  13. when:
  14. - hostvars[groups.masters[0]].openshift_master_cluster_public_hostname is defined
  15. - openshift_openstack_num_masters == 1
  16. - name: "Add public master cluster hostname records to the private A records (multi-master)"
  17. set_fact:
  18. private_records: "{{ private_records | default([]) + [ { 'type': 'A', 'hostname': (hostvars[groups.masters[0]].openshift_master_cluster_public_hostname | replace(openshift_openstack_full_dns_domain, ''))[:-1], 'ip': hostvars[groups.lb[0]].private_v4 } ] }}"
  19. when:
  20. - hostvars[groups.masters[0]].openshift_master_cluster_public_hostname is defined
  21. - openshift_openstack_num_masters > 1
  22. - name: "Set the private DNS server to use the external value (if provided)"
  23. set_fact:
  24. nsupdate_server_private: "{{ openshift_openstack_external_nsupdate_keys['private']['server'] }}"
  25. nsupdate_key_secret_private: "{{ openshift_openstack_external_nsupdate_keys['private']['key_secret'] }}"
  26. nsupdate_key_algorithm_private: "{{ openshift_openstack_external_nsupdate_keys['private']['key_algorithm'] }}"
  27. nsupdate_private_key_name: "{{ openshift_openstack_external_nsupdate_keys['private']['key_name']|default('private-' + openshift_openstack_full_dns_domain) }}"
  28. when:
  29. - openshift_openstack_external_nsupdate_keys['private'] is defined
  30. - name: "Generate the private Add section for DNS"
  31. set_fact:
  32. private_named_records:
  33. - view: "private"
  34. zone: "{{ openshift_openstack_full_dns_domain }}"
  35. server: "{{ nsupdate_server_private }}"
  36. key_name: "{{ nsupdate_private_key_name|default('private-' + openshift_openstack_full_dns_domain) }}"
  37. key_secret: "{{ nsupdate_key_secret_private }}"
  38. key_algorithm: "{{ nsupdate_key_algorithm_private | lower }}"
  39. entries: "{{ private_records }}"
  40. when:
  41. - openshift_openstack_external_nsupdate_keys['private'] is defined
  42. - name: "Generate list of public A records"
  43. set_fact:
  44. public_records: "{{ public_records | default([]) + [ { 'type': 'A', 'hostname': hostvars[item]['ansible_hostname'] + openshift_openstack_public_hostname_suffix, 'ip': hostvars[item]['public_v4'] } ] }}"
  45. with_items: "{{ groups['cluster_hosts'] }}"
  46. when: hostvars[item]['public_v4'] is defined
  47. - name: "Add wildcard records to the public A records"
  48. set_fact:
  49. public_records: "{{ public_records | default([]) + [ { 'type': 'A', 'hostname': '*.' + openshift_openstack_app_subdomain, 'ip': hostvars[item]['public_v4'] } ] }}"
  50. with_items: "{{ groups['infra_hosts'] }}"
  51. when: hostvars[item]['public_v4'] is defined
  52. - name: "Add public master cluster hostname records to the public A records (single master)"
  53. set_fact:
  54. public_records: "{{ public_records | default([]) + [ { 'type': 'A', 'hostname': (hostvars[groups.masters[0]].openshift_master_cluster_public_hostname | replace(openshift_openstack_full_dns_domain, ''))[:-1], 'ip': hostvars[groups.masters[0]].public_v4 } ] }}"
  55. when:
  56. - hostvars[groups.masters[0]].openshift_master_cluster_public_hostname is defined
  57. - openshift_openstack_num_masters == 1
  58. - name: "Add public master cluster hostname records to the public A records (multi-master)"
  59. set_fact:
  60. public_records: "{{ public_records | default([]) + [ { 'type': 'A', 'hostname': (hostvars[groups.masters[0]].openshift_master_cluster_public_hostname | replace(openshift_openstack_full_dns_domain, ''))[:-1], 'ip': hostvars[groups.lb[0]].public_v4 } ] }}"
  61. when:
  62. - hostvars[groups.masters[0]].openshift_master_cluster_public_hostname is defined
  63. - openshift_openstack_num_masters > 1
  64. - name: "Set the public DNS server details to use the external value (if provided)"
  65. set_fact:
  66. nsupdate_server_public: "{{ openshift_openstack_external_nsupdate_keys['public']['server'] }}"
  67. nsupdate_key_secret_public: "{{ openshift_openstack_external_nsupdate_keys['public']['key_secret'] }}"
  68. nsupdate_key_algorithm_public: "{{ openshift_openstack_external_nsupdate_keys['public']['key_algorithm'] }}"
  69. nsupdate_public_key_name: "{{ openshift_openstack_external_nsupdate_keys['public']['key_name']|default('public-' + openshift_openstack_full_dns_domain) }}"
  70. when:
  71. - openshift_openstack_external_nsupdate_keys['public'] is defined
  72. - name: "Generate the public Add section for DNS"
  73. set_fact:
  74. public_named_records:
  75. - view: "public"
  76. zone: "{{ openshift_openstack_full_dns_domain }}"
  77. server: "{{ nsupdate_server_public }}"
  78. key_name: "{{ nsupdate_public_key_name|default('public-' + openshift_openstack_full_dns_domain) }}"
  79. key_secret: "{{ nsupdate_key_secret_public }}"
  80. key_algorithm: "{{ nsupdate_key_algorithm_public | lower }}"
  81. entries: "{{ public_records }}"
  82. when:
  83. - openshift_openstack_external_nsupdate_keys['public'] is defined
  84. - name: "Generate the final openshift_openstack_dns_records_add"
  85. set_fact:
  86. openshift_openstack_dns_records_add: "{{ private_named_records|default([]) + public_named_records|default([]) }}"
  87. - name: "Add DNS A records"
  88. nsupdate:
  89. key_name: "{{ item.0.key_name }}"
  90. key_secret: "{{ item.0.key_secret }}"
  91. key_algorithm: "{{ item.0.key_algorithm }}"
  92. server: "{{ item.0.server }}"
  93. zone: "{{ item.0.zone }}"
  94. record: "{{ item.1.hostname }}"
  95. value: "{{ item.1.ip }}"
  96. type: "{{ item.1.type }}"
  97. # TODO(shadower): add a cleanup playbook that removes these records, too!
  98. state: present
  99. with_subelements:
  100. - "{{ openshift_openstack_dns_records_add | default([]) }}"
  101. - entries
  102. register: nsupdate_add_result
  103. until: nsupdate_add_result is succeeded
  104. retries: 10
  105. delay: 1