populate-dns.yml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. - name: "Add public master cluster hostname records to the public A records (multi-master)"
  58. set_fact:
  59. 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 } ] }}"
  60. when:
  61. - hostvars[groups.masters[0]].openshift_master_cluster_public_hostname is defined
  62. - openshift_openstack_num_masters > 1
  63. - name: "Set the public DNS server details to use the external value (if provided)"
  64. set_fact:
  65. nsupdate_server_public: "{{ openshift_openstack_external_nsupdate_keys['public']['server'] }}"
  66. nsupdate_key_secret_public: "{{ openshift_openstack_external_nsupdate_keys['public']['key_secret'] }}"
  67. nsupdate_key_algorithm_public: "{{ openshift_openstack_external_nsupdate_keys['public']['key_algorithm'] }}"
  68. nsupdate_public_key_name: "{{ openshift_openstack_external_nsupdate_keys['public']['key_name']|default('public-' + openshift_openstack_full_dns_domain) }}"
  69. when:
  70. - openshift_openstack_external_nsupdate_keys is defined
  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. - name: "Generate the final openshift_openstack_dns_records_add"
  83. set_fact:
  84. openshift_openstack_dns_records_add: "{{ private_named_records + public_named_records }}"
  85. - name: "Add DNS A records"
  86. nsupdate:
  87. key_name: "{{ item.0.key_name }}"
  88. key_secret: "{{ item.0.key_secret }}"
  89. key_algorithm: "{{ item.0.key_algorithm }}"
  90. server: "{{ item.0.server }}"
  91. zone: "{{ item.0.zone }}"
  92. record: "{{ item.1.hostname }}"
  93. value: "{{ item.1.ip }}"
  94. type: "{{ item.1.type }}"
  95. # TODO(shadower): add a cleanup playbook that removes these records, too!
  96. state: present
  97. with_subelements:
  98. - "{{ openshift_openstack_dns_records_add | default({}) }}"
  99. - entries
  100. register: nsupdate_add_result
  101. until: nsupdate_add_result|succeeded
  102. retries: 10
  103. delay: 1