main.yml 6.6 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'], '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_app_domain, '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(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. - 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(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. - 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: "{{ external_nsupdate_keys['private']['server'] }}"
  25. nsupdate_key_secret_private: "{{ external_nsupdate_keys['private']['key_secret'] }}"
  26. nsupdate_key_algorithm_private: "{{ external_nsupdate_keys['private']['key_algorithm'] }}"
  27. nsupdate_private_key_name: "{{ external_nsupdate_keys['private']['key_name']|default('private-' + full_dns_domain) }}"
  28. when:
  29. - external_nsupdate_keys is defined
  30. - external_nsupdate_keys['private'] is defined
  31. - name: "Set the private DNS server to use the provisioned value"
  32. set_fact:
  33. nsupdate_server_private: "{{ hostvars[groups['dns'][0]].public_v4 }}"
  34. nsupdate_key_secret_private: "{{ hostvars[groups['dns'][0]].nsupdate_keys['private-' + full_dns_domain].key_secret }}"
  35. nsupdate_key_algorithm_private: "{{ hostvars[groups['dns'][0]].nsupdate_keys['private-' + full_dns_domain].key_algorithm }}"
  36. when:
  37. - nsupdate_server_private is undefined
  38. - name: "Generate the private Add section for DNS"
  39. set_fact:
  40. private_named_records:
  41. - view: "private"
  42. zone: "{{ full_dns_domain }}"
  43. server: "{{ nsupdate_server_private }}"
  44. key_name: "{{ nsupdate_private_key_name|default('private-' + full_dns_domain) }}"
  45. key_secret: "{{ nsupdate_key_secret_private }}"
  46. key_algorithm: "{{ nsupdate_key_algorithm_private | lower }}"
  47. entries: "{{ private_records }}"
  48. - name: "Generate list of public A records"
  49. set_fact:
  50. public_records: "{{ public_records | default([]) + [ { 'type': 'A', 'hostname': hostvars[item]['ansible_hostname'], 'ip': hostvars[item]['public_v4'] } ] }}"
  51. with_items: "{{ groups['cluster_hosts'] }}"
  52. when: hostvars[item]['public_v4'] is defined
  53. - name: "Add wildcard records to the public A records"
  54. set_fact:
  55. public_records: "{{ public_records | default([]) + [ { 'type': 'A', 'hostname': '*.' + openshift_app_domain, 'ip': hostvars[item]['public_v4'] } ] }}"
  56. with_items: "{{ groups['infra_hosts'] }}"
  57. when: hostvars[item]['public_v4'] is defined
  58. - name: "Add public master cluster hostname records to the public A records (single master)"
  59. set_fact:
  60. 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 } ] }}"
  61. when:
  62. - hostvars[groups.masters[0]].openshift_master_cluster_public_hostname is defined
  63. - openstack_num_masters == 1
  64. - not use_bastion|bool
  65. - name: "Add public master cluster hostname records to the public A records (single master behind a bastion)"
  66. set_fact:
  67. 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 } ] }}"
  68. when:
  69. - hostvars[groups.masters[0]].openshift_master_cluster_public_hostname is defined
  70. - openstack_num_masters == 1
  71. - use_bastion|bool
  72. - name: "Add public master cluster hostname records to the public A records (multi-master)"
  73. set_fact:
  74. 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 } ] }}"
  75. when:
  76. - hostvars[groups.masters[0]].openshift_master_cluster_public_hostname is defined
  77. - openstack_num_masters > 1
  78. - name: "Set the public DNS server details to use the external value (if provided)"
  79. set_fact:
  80. nsupdate_server_public: "{{ external_nsupdate_keys['public']['server'] }}"
  81. nsupdate_key_secret_public: "{{ external_nsupdate_keys['public']['key_secret'] }}"
  82. nsupdate_key_algorithm_public: "{{ external_nsupdate_keys['public']['key_algorithm'] }}"
  83. nsupdate_public_key_name: "{{ external_nsupdate_keys['public']['key_name']|default('public-' + full_dns_domain) }}"
  84. when:
  85. - external_nsupdate_keys is defined
  86. - external_nsupdate_keys['public'] is defined
  87. - name: "Set the public DNS server details to use the provisioned value"
  88. set_fact:
  89. nsupdate_server_public: "{{ hostvars[groups['dns'][0]].public_v4 }}"
  90. nsupdate_key_secret_public: "{{ hostvars[groups['dns'][0]].nsupdate_keys['public-' + full_dns_domain].key_secret }}"
  91. nsupdate_key_algorithm_public: "{{ hostvars[groups['dns'][0]].nsupdate_keys['public-' + full_dns_domain].key_algorithm }}"
  92. when:
  93. - nsupdate_server_public is undefined
  94. - name: "Generate the public Add section for DNS"
  95. set_fact:
  96. public_named_records:
  97. - view: "public"
  98. zone: "{{ full_dns_domain }}"
  99. server: "{{ nsupdate_server_public }}"
  100. key_name: "{{ nsupdate_public_key_name|default('public-' + full_dns_domain) }}"
  101. key_secret: "{{ nsupdate_key_secret_public }}"
  102. key_algorithm: "{{ nsupdate_key_algorithm_public | lower }}"
  103. entries: "{{ public_records }}"
  104. - name: "Generate the final dns_records_add"
  105. set_fact:
  106. dns_records_add: "{{ private_named_records + public_named_records }}"