diff options
author | Øystein Bedin <oybed@users.noreply.github.com> | 2017-06-13 15:35:22 -0400 |
---|---|---|
committer | Eric Sauer <etsauer@gmail.com> | 2017-06-13 14:35:22 -0500 |
commit | 22e88c9ce8f81cb13c3d050455d332161a1acd83 (patch) | |
tree | 5947dff709c231bee754aea91731c4b1c1386eae /roles/dns-server-detect/tasks | |
parent | f26abd53a9e2763091962421775fad102f0b05be (diff) | |
download | openshift-22e88c9ce8f81cb13c3d050455d332161a1acd83.tar.gz openshift-22e88c9ce8f81cb13c3d050455d332161a1acd83.tar.bz2 openshift-22e88c9ce8f81cb13c3d050455d332161a1acd83.tar.xz openshift-22e88c9ce8f81cb13c3d050455d332161a1acd83.zip |
Update CASL to use nsupdate for DNS records (#48)
* Updated to use nsupdate for DNS records
* Updated formatting of dict
* Updating descriptive text
* Support for external DNS config
* Upgrading jinja2 to work correctly with latest templates
* Latest update for nsupdate
* Updated to use nsupdate for DNS records
* Updated formatting of dict
* Updating descriptive text
* Support for external DNS config
* Latest update for nsupdate
* Updated to support external public/private DNS server(s)
* Updated DNS server handling
* Updated DNS server handling
* Updated DNS server handling
* Eliminated the from the sample inventories
* Updated sample inventory to point to 2 separate DNS servers for private/public
* Playbook clean-up
* Adding 'python-dns'
* splitting subscription manager calls to allow for a clean pre-install playbook
Diffstat (limited to 'roles/dns-server-detect/tasks')
-rw-r--r-- | roles/dns-server-detect/tasks/main.yml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/roles/dns-server-detect/tasks/main.yml b/roles/dns-server-detect/tasks/main.yml new file mode 100644 index 000000000..e8dd0acf0 --- /dev/null +++ b/roles/dns-server-detect/tasks/main.yml @@ -0,0 +1,38 @@ +--- + +- fail: + msg: 'Missing required private DNS server(s)' + when: + - external_nsupdate_keys['private'] is undefined + - hostvars[groups['dns'][0]] is undefined + +- fail: + msg: 'Missing required public DNS server(s)' + when: + - external_nsupdate_keys['public'] is undefined + - hostvars[groups['dns'][0]] is undefined + +- name: "Set the private DNS server to use the external value (if provided)" + set_fact: + private_dns_server: "{{ external_nsupdate_keys['private']['server'] }}" + when: + - external_nsupdate_keys['private'] is defined + +- name: "Set the private DNS server to use the provisioned value" + set_fact: + private_dns_server: "{{ hostvars[groups['dns'][0]].openstack.private_v4 }}" + when: + - private_dns_server is undefined + +- name: "Set the public DNS server to use the external value (if provided)" + set_fact: + public_dns_server: "{{ external_nsupdate_keys['public']['server'] }}" + when: + - external_nsupdate_keys['public'] is defined + +- name: "Set the public DNS server to use the provisioned value" + set_fact: + public_dns_server: "{{ hostvars[groups['dns'][0]].openstack.public_v4 }}" + when: + - public_dns_server is undefined + |