diff options
author | Thomas Wiest <twiest@users.noreply.github.com> | 2016-02-04 16:27:31 -0500 |
---|---|---|
committer | Thomas Wiest <twiest@users.noreply.github.com> | 2016-02-04 16:27:31 -0500 |
commit | b25ad7c7462c1ead726fa998e99b12a0c4da8676 (patch) | |
tree | aba2da336673022ed2525bbbbd6952df334b79f8 /roles/dns/templates/named.conf | |
parent | a467f94a0157eaee88900dd466dd79dab2befa52 (diff) | |
parent | 82d474d7b1ba564f051c1ccf125413f4cca28d42 (diff) | |
download | openshift-b25ad7c7462c1ead726fa998e99b12a0c4da8676.tar.gz openshift-b25ad7c7462c1ead726fa998e99b12a0c4da8676.tar.bz2 openshift-b25ad7c7462c1ead726fa998e99b12a0c4da8676.tar.xz openshift-b25ad7c7462c1ead726fa998e99b12a0c4da8676.zip |
Merge pull request #1206 from lhuard1A/openstack_dns
Add a DNS server on OpenStack clusters
Diffstat (limited to 'roles/dns/templates/named.conf')
-rw-r--r-- | roles/dns/templates/named.conf | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/roles/dns/templates/named.conf b/roles/dns/templates/named.conf new file mode 100644 index 000000000..22c1ff935 --- /dev/null +++ b/roles/dns/templates/named.conf @@ -0,0 +1,23 @@ +options +{ + directory "/var/named"; + + allow-query { {{ ansible_default_ipv4.network }}/24; }; + + recursion yes; + +{% if dns_forwarders is defined %} + forwarders { + {% for dns in dns_forwarders %} + {{ dns }}; + {% endfor %} + }; +{% endif %} +}; +{% for zone in dns_zones %} + +zone "{{ zone }}" IN { + type master; + file "openshift-cluster.zone"; +}; +{% endfor %} |