diff options
author | Tomas Sedovic <tomas@sedovic.cz> | 2017-06-14 16:28:00 +0200 |
---|---|---|
committer | Tomas Sedovic <tomas@sedovic.cz> | 2017-06-14 16:28:00 +0200 |
commit | 6241e33432ea88cf9c5bc67db6d09c90b2e891ba (patch) | |
tree | 4e82fafc32a598d9cf5c1c72b9c20e83268b0251 /roles/dns-server-detect/tasks/main.yml | |
parent | 672f8e155bdc7244d4bf0cbcca5e4be5f063d55f (diff) | |
parent | 22e88c9ce8f81cb13c3d050455d332161a1acd83 (diff) | |
download | openshift-6241e33432ea88cf9c5bc67db6d09c90b2e891ba.tar.gz openshift-6241e33432ea88cf9c5bc67db6d09c90b2e891ba.tar.bz2 openshift-6241e33432ea88cf9c5bc67db6d09c90b2e891ba.tar.xz openshift-6241e33432ea88cf9c5bc67db6d09c90b2e891ba.zip |
Merge redhat-cop/casl-ansible into openstack-provider
This imports the openstack provisioning bits of:
https://github.com/redhat-cop/casl-ansible
taking care to preserve the original history of those files.
Diffstat (limited to 'roles/dns-server-detect/tasks/main.yml')
-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 + |