generate-dns.yml 4.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. ---
  2. - name: "Generate list of private A records"
  3. set_fact:
  4. private_records: "{{ private_records | default([]) + [ { 'type': 'A', 'fqdn': hostvars[item]['ansible_hostname'] + openshift_openstack_private_hostname_suffix + '.' + openshift_openstack_full_dns_domain, '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', 'fqdn': '*.' + hostvars[groups.masters[0]].openshift_master_default_subdomain, 'ip': hostvars[item]['private_v4'] } ] }}"
  9. with_items: "{{ groups['infra_hosts'] }}"
  10. when: openshift_openstack_public_router_ip is defined
  11. - name: "Add public master cluster hostname records to the private A records"
  12. set_fact:
  13. private_records: "{{ private_records | default([]) + [ { 'type': 'A', 'fqdn': hostvars[groups.masters[0]].openshift_master_cluster_public_hostname, 'ip': openshift_openstack_private_api_ip } ] }}"
  14. when:
  15. - hostvars[groups.masters[0]].openshift_master_cluster_public_hostname is defined
  16. - openshift_openstack_private_api_ip is defined
  17. - name: "Set the private DNS server to use the external value (if provided)"
  18. set_fact:
  19. nsupdate_server_private: "{{ openshift_openstack_external_nsupdate_keys['private']['server'] }}"
  20. nsupdate_key_secret_private: "{{ openshift_openstack_external_nsupdate_keys['private']['key_secret'] }}"
  21. nsupdate_key_algorithm_private: "{{ openshift_openstack_external_nsupdate_keys['private']['key_algorithm'] }}"
  22. nsupdate_private_key_name: "{{ openshift_openstack_external_nsupdate_keys['private']['key_name'] }}"
  23. when:
  24. - openshift_openstack_external_nsupdate_keys['private'] is defined
  25. - name: "Generate the private Add section for DNS"
  26. set_fact:
  27. private_named_records:
  28. - view: "private"
  29. zone: "{{ openshift_openstack_nsupdate_zone }}"
  30. server: "{{ nsupdate_server_private }}"
  31. key_name: "{{ nsupdate_private_key_name }}"
  32. key_secret: "{{ nsupdate_key_secret_private }}"
  33. key_algorithm: "{{ nsupdate_key_algorithm_private | lower }}"
  34. entries: "{{ private_records }}"
  35. when:
  36. - openshift_openstack_external_nsupdate_keys['private'] is defined
  37. - name: "Generate list of public A records"
  38. set_fact:
  39. public_records: "{{ public_records | default([]) + [ { 'type': 'A', 'fqdn': hostvars[item]['ansible_hostname'] + openshift_openstack_public_hostname_suffix + '.' + openshift_openstack_full_dns_domain, 'ip': hostvars[item]['public_v4'] } ] }}"
  40. with_items: "{{ groups['cluster_hosts'] }}"
  41. when: hostvars[item]['public_v4'] is defined
  42. - name: "Add wildcard record to the public A records"
  43. set_fact:
  44. public_records: "{{ public_records | default([]) + [ { 'type': 'A', 'fqdn': '*.' + hostvars[groups.masters[0]].openshift_master_default_subdomain, 'ip': openshift_openstack_public_router_ip } ] }}"
  45. when: openshift_openstack_public_router_ip is defined
  46. - name: "Add the public API entry point record"
  47. set_fact:
  48. public_records: "{{ public_records | default([]) + [ { 'type': 'A', 'fqdn': hostvars[groups.masters[0]].openshift_master_cluster_public_hostname, 'ip': openshift_openstack_public_api_ip } ] }}"
  49. when:
  50. - hostvars[groups.masters[0]].openshift_master_cluster_public_hostname is defined
  51. - openshift_openstack_public_api_ip is defined
  52. - name: "Set the public DNS server details to use the external value (if provided)"
  53. set_fact:
  54. nsupdate_server_public: "{{ openshift_openstack_external_nsupdate_keys['public']['server'] }}"
  55. nsupdate_key_secret_public: "{{ openshift_openstack_external_nsupdate_keys['public']['key_secret'] }}"
  56. nsupdate_key_algorithm_public: "{{ openshift_openstack_external_nsupdate_keys['public']['key_algorithm'] }}"
  57. nsupdate_public_key_name: "{{ openshift_openstack_external_nsupdate_keys['public']['key_name'] }}"
  58. when:
  59. - openshift_openstack_external_nsupdate_keys['public'] is defined
  60. - name: "Generate the public Add section for DNS"
  61. set_fact:
  62. public_named_records:
  63. - view: "public"
  64. zone: "{{ openshift_openstack_nsupdate_zone }}"
  65. server: "{{ nsupdate_server_public }}"
  66. key_name: "{{ nsupdate_public_key_name }}"
  67. key_secret: "{{ nsupdate_key_secret_public }}"
  68. key_algorithm: "{{ nsupdate_key_algorithm_public | lower }}"
  69. entries: "{{ public_records }}"
  70. when:
  71. - openshift_openstack_external_nsupdate_keys['public'] is defined
  72. - name: "Generate the final openshift_openstack_dns_records"
  73. set_fact:
  74. openshift_openstack_dns_records: "{{ private_named_records|default([]) + public_named_records|default([]) }}"