populate-dns.yml 6.3 KB

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