d4f8b413a8
kolla designate DNSaaS makes use of containerised bind9 servers as it's default designate_backend. These can be disabled by setting designate_backend to "no". default: "bind9" This commit adds two new properties: 1) designate_backend_external which can be enabled by setting it to 'bind9'. default: "no" and 2) designate_backend_external_bind9_nameservers, which can accept a csv list of all the external server addresses. (default: "") The following attributes should either be set: 'internal' (the default) designate_backend: "bind9" designate_backend_external: "no" (designate_backend_external_bind9_nameservers is ignored) or 'external' designate_backend: "no" designate_backend_external: "bind9" (designate_backend_external_bind9_nameservers must be populated) Configuration override files to align with external bind9 dns servers must be supplied manually, /etc/kolla/config/designate/rndc.key /etc/kolla/config/designate/rndc.conf Change-Id: I8dbe6fd4fe7820b9143604d89e8399b07e07c3fd
56 lines
2.2 KiB
Django/Jinja
56 lines
2.2 KiB
Django/Jinja
{% if designate_backend == 'bind9' or designate_backend_external == 'bind9' %}
|
|
- name: default-bind
|
|
id: {{ designate_pool_id }}
|
|
description: Default BIND9 Pool
|
|
attributes: {}
|
|
ns_records:
|
|
- hostname: {{ designate_ns_record }}.
|
|
priority: 1
|
|
nameservers:
|
|
{% if designate_backend == 'bind9' %}
|
|
{% for host in groups['designate-backend-bind9'] %}
|
|
- host: {{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}
|
|
port: {{ designate_bind_port }}
|
|
{% endfor %}
|
|
{% elif designate_backend_external == 'bind9' %}
|
|
{% for host in designate_backend_external_bind9_nameservers.replace(" ", "").split(',') %}
|
|
- host: {{ host }}
|
|
port: {{ designate_bind_port }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
targets:
|
|
{% if designate_backend == 'bind9' %}
|
|
{% for bind_host in groups['designate-backend-bind9'] %}
|
|
- type: bind9
|
|
description: BIND9 Server {{ hostvars[bind_host]['ansible_' + hostvars[bind_host]['api_interface']]['ipv4']['address'] }}
|
|
masters:
|
|
{% for mdns_host in groups['designate-mdns'] %}
|
|
- host: {{ hostvars[mdns_host]['ansible_' + hostvars[mdns_host]['api_interface']]['ipv4']['address'] }}
|
|
port: 5354
|
|
{% endfor %}
|
|
options:
|
|
host: {{ hostvars[bind_host]['ansible_' + hostvars[bind_host]['api_interface']]['ipv4']['address'] }}
|
|
port: {{ designate_bind_port }}
|
|
rndc_host: {{ hostvars[bind_host]['ansible_' + hostvars[bind_host]['api_interface']]['ipv4']['address'] }}
|
|
rndc_port: {{ designate_rndc_port }}
|
|
rndc_key_file: /etc/designate/rndc.key
|
|
{% endfor %}
|
|
{% elif designate_backend_external == 'bind9' %}
|
|
{% for bind_host in designate_backend_external_bind9_nameservers.replace(" ", "").split(',') %}
|
|
- type: bind9
|
|
description: BIND9 Server {{ bind_host }}
|
|
masters:
|
|
{% for mdns_host in groups['designate-mdns'] %}
|
|
- host: {{ hostvars[mdns_host]['ansible_' + hostvars[mdns_host]['api_interface']]['ipv4']['address'] }}
|
|
port: 5354
|
|
{% endfor %}
|
|
options:
|
|
host: {{ bind_host }}
|
|
port: {{ designate_bind_port }}
|
|
rndc_host: {{ bind_host }}
|
|
rndc_port: {{ designate_rndc_port }}
|
|
rndc_key_file: /etc/designate/rndc.key
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endif %}
|