123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- ---
- - name: "Generate list of private A records"
- set_fact:
- 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'] } ] }}"
- with_items: "{{ groups['OSEv3'] }}"
- when:
- - hostvars[item]['private_v4'] is defined
- - hostvars[item]['private_v4'] is not none
- - hostvars[item]['private_v4'] | string
- - name: "Add wildcard records to the private A records for infrahosts"
- set_fact:
- private_records: "{{ private_records | default([]) + [ { 'type': 'A', 'fqdn': '*.' + hostvars[groups.masters[0]].openshift_master_default_subdomain, 'ip': hostvars[item]['private_v4'] } ] }}"
- with_items: "{{ groups['openstack_infra_nodes'] }}"
- when:
- - groups.masters
- - hostvars[groups.masters[0]].openshift_master_default_subdomain is defined
- - openshift_openstack_public_router_ip is defined
- - openshift_openstack_public_router_ip is not none
- - openshift_openstack_public_router_ip | string
- - debug: var=openshift_openstack_private_api_ip
- - name: "Add public master cluster hostname records to the private A records"
- set_fact:
- private_records: "{{ private_records | default([]) + [ { 'type': 'A', 'fqdn': hostvars[groups.masters[0]].openshift_master_cluster_public_hostname, 'ip': openshift_openstack_private_api_ip } ] }}"
- when:
- - groups.masters
- - hostvars[groups.masters[0]].openshift_master_cluster_public_hostname is defined
- - openshift_openstack_private_api_ip is defined
- - openshift_openstack_private_api_ip is not none
- - openshift_openstack_private_api_ip | string
- - name: "Set the private DNS server to use the external value (if provided)"
- set_fact:
- nsupdate_server_private: "{{ openshift_openstack_external_nsupdate_keys['private']['server'] }}"
- nsupdate_key_secret_private: "{{ openshift_openstack_external_nsupdate_keys['private']['key_secret'] }}"
- nsupdate_key_algorithm_private: "{{ openshift_openstack_external_nsupdate_keys['private']['key_algorithm'] }}"
- nsupdate_private_key_name: "{{ openshift_openstack_external_nsupdate_keys['private']['key_name'] }}"
- when:
- - openshift_openstack_external_nsupdate_keys['private'] is defined
- - name: "Generate the private Add section for DNS"
- set_fact:
- private_named_records:
- - view: "private"
- zone: "{{ openshift_openstack_nsupdate_zone }}"
- server: "{{ nsupdate_server_private }}"
- key_name: "{{ nsupdate_private_key_name }}"
- key_secret: "{{ nsupdate_key_secret_private }}"
- key_algorithm: "{{ nsupdate_key_algorithm_private | lower }}"
- entries: "{{ private_records }}"
- when:
- - openshift_openstack_external_nsupdate_keys['private'] is defined
- - private_records is defined
- - name: "Generate list of public A records"
- set_fact:
- 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'] } ] }}"
- with_items: "{{ groups['OSEv3'] }}"
- when:
- - hostvars[item]['public_v4'] is defined
- - hostvars[item]['public_v4'] | string
- - name: "Add wildcard record to the public A records"
- set_fact:
- public_records: "{{ public_records | default([]) + [ { 'type': 'A', 'fqdn': '*.' + hostvars[groups.masters[0]].openshift_master_default_subdomain, 'ip': openshift_openstack_public_router_ip } ] }}"
- when:
- - groups.masters
- - hostvars[groups.masters[0]].openshift_master_default_subdomain is defined
- - openshift_openstack_public_router_ip is defined
- - openshift_openstack_public_router_ip is not none
- - openshift_openstack_public_router_ip | string
- - name: "Add the public API entry point record"
- set_fact:
- public_records: "{{ public_records | default([]) + [ { 'type': 'A', 'fqdn': hostvars[groups.masters[0]].openshift_master_cluster_public_hostname, 'ip': openshift_openstack_public_api_ip } ] }}"
- when:
- - groups.masters
- - hostvars[groups.masters[0]].openshift_master_cluster_public_hostname is defined
- - openshift_openstack_public_api_ip is defined
- - openshift_openstack_public_api_ip is not none
- - openshift_openstack_public_api_ip | string
- - name: "Set the public DNS server details to use the external value (if provided)"
- set_fact:
- nsupdate_server_public: "{{ openshift_openstack_external_nsupdate_keys['public']['server'] }}"
- nsupdate_key_secret_public: "{{ openshift_openstack_external_nsupdate_keys['public']['key_secret'] }}"
- nsupdate_key_algorithm_public: "{{ openshift_openstack_external_nsupdate_keys['public']['key_algorithm'] }}"
- nsupdate_public_key_name: "{{ openshift_openstack_external_nsupdate_keys['public']['key_name'] }}"
- when:
- - openshift_openstack_external_nsupdate_keys['public'] is defined
- - name: "Generate the public Add section for DNS"
- set_fact:
- public_named_records:
- - view: "public"
- zone: "{{ openshift_openstack_nsupdate_zone }}"
- server: "{{ nsupdate_server_public }}"
- key_name: "{{ nsupdate_public_key_name }}"
- key_secret: "{{ nsupdate_key_secret_public }}"
- key_algorithm: "{{ nsupdate_key_algorithm_public | lower }}"
- entries: "{{ public_records }}"
- when:
- - openshift_openstack_external_nsupdate_keys['public'] is defined
- - public_records is defined
- - name: "Generate the final openshift_openstack_dns_records"
- set_fact:
- openshift_openstack_dns_records: "{{ private_named_records|default([]) + public_named_records|default([]) }}"
|