populate-dns.yml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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'], '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 is defined
  30. - openshift_openstack_external_nsupdate_keys['private'] is defined
  31. - name: "Generate the private Add section for DNS"
  32. set_fact:
  33. private_named_records:
  34. - view: "private"
  35. zone: "{{ openshift_openstack_full_dns_domain }}"
  36. server: "{{ nsupdate_server_private }}"
  37. key_name: "{{ nsupdate_private_key_name|default('private-' + openshift_openstack_full_dns_domain) }}"
  38. key_secret: "{{ nsupdate_key_secret_private }}"
  39. key_algorithm: "{{ nsupdate_key_algorithm_private | lower }}"
  40. entries: "{{ private_records }}"
  41. - name: "Generate list of public A records"
  42. set_fact:
  43. public_records: "{{ public_records | default([]) + [ { 'type': 'A', 'hostname': hostvars[item]['ansible_hostname'], 'ip': hostvars[item]['public_v4'] } ] }}"
  44. with_items: "{{ groups['cluster_hosts'] }}"
  45. when: hostvars[item]['public_v4'] is defined
  46. - name: "Add wildcard records to the public A records"
  47. set_fact:
  48. public_records: "{{ public_records | default([]) + [ { 'type': 'A', 'hostname': '*.' + openshift_openstack_app_subdomain, 'ip': hostvars[item]['public_v4'] } ] }}"
  49. with_items: "{{ groups['infra_hosts'] }}"
  50. when: hostvars[item]['public_v4'] is defined
  51. - name: "Add public master cluster hostname records to the public A records (single master)"
  52. set_fact:
  53. 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 } ] }}"
  54. when:
  55. - hostvars[groups.masters[0]].openshift_master_cluster_public_hostname is defined
  56. - openshift_openstack_num_masters == 1
  57. - not openshift_openstack_use_bastion|bool
  58. - name: "Add public master cluster hostname records to the public A records (single master behind a bastion)"
  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.bastions[0]].public_v4 } ] }}"
  61. when:
  62. - hostvars[groups.masters[0]].openshift_master_cluster_public_hostname is defined
  63. - openshift_openstack_num_masters == 1
  64. - openshift_openstack_use_bastion|bool
  65. - name: "Add public master cluster hostname records to the public A records (multi-master)"
  66. set_fact:
  67. 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 } ] }}"
  68. when:
  69. - hostvars[groups.masters[0]].openshift_master_cluster_public_hostname is defined
  70. - openshift_openstack_num_masters > 1
  71. - name: "Set the public DNS server details to use the external value (if provided)"
  72. set_fact:
  73. nsupdate_server_public: "{{ openshift_openstack_external_nsupdate_keys['public']['server'] }}"
  74. nsupdate_key_secret_public: "{{ openshift_openstack_external_nsupdate_keys['public']['key_secret'] }}"
  75. nsupdate_key_algorithm_public: "{{ openshift_openstack_external_nsupdate_keys['public']['key_algorithm'] }}"
  76. nsupdate_public_key_name: "{{ openshift_openstack_external_nsupdate_keys['public']['key_name']|default('public-' + openshift_openstack_full_dns_domain) }}"
  77. when:
  78. - openshift_openstack_external_nsupdate_keys is defined
  79. - openshift_openstack_external_nsupdate_keys['public'] is defined
  80. - name: "Generate the public Add section for DNS"
  81. set_fact:
  82. public_named_records:
  83. - view: "public"
  84. zone: "{{ openshift_openstack_full_dns_domain }}"
  85. server: "{{ nsupdate_server_public }}"
  86. key_name: "{{ nsupdate_public_key_name|default('public-' + openshift_openstack_full_dns_domain) }}"
  87. key_secret: "{{ nsupdate_key_secret_public }}"
  88. key_algorithm: "{{ nsupdate_key_algorithm_public | lower }}"
  89. entries: "{{ public_records }}"
  90. - name: "Generate the final openshift_openstack_dns_records_add"
  91. set_fact:
  92. openshift_openstack_dns_records_add: "{{ private_named_records + public_named_records }}"
  93. - name: "Add DNS A records"
  94. nsupdate:
  95. key_name: "{{ item.0.key_name }}"
  96. key_secret: "{{ item.0.key_secret }}"
  97. key_algorithm: "{{ item.0.key_algorithm }}"
  98. server: "{{ item.0.server }}"
  99. zone: "{{ item.0.zone }}"
  100. record: "{{ item.1.hostname }}"
  101. value: "{{ item.1.ip }}"
  102. type: "{{ item.1.type }}"
  103. # TODO(shadower): add a cleanup playbook that removes these records, too!
  104. state: present
  105. with_subelements:
  106. - "{{ openshift_openstack_dns_records_add | default({}) }}"
  107. - entries
  108. register: nsupdate_add_result
  109. until: nsupdate_add_result|succeeded
  110. retries: 10
  111. delay: 1