Merge "Make designate bind9 cmdline configurable"

This commit is contained in:
Zuul 2023-12-28 15:17:16 +00:00 committed by Gerrit Code Review
commit b854a0f9db
2 changed files with 2 additions and 1 deletions

View File

@ -313,6 +313,7 @@ designate_dnssec_validation: "yes"
designate_recursion: "no"
## Example for designate_forwarders_addresses: "10.199.200.1; 10.199.100.1"
designate_forwarders_addresses: ""
designate_backend_bind9_cmdline_extras: "-U {{ designate_backend_bind9_workers }} -g"
####################
# Infoblox

View File

@ -2,7 +2,7 @@
{% set bind_file = 'bind/named.conf' if kolla_base_distro in ['ubuntu', 'debian'] else 'named.conf' %}
{
"command": "/usr/sbin/{{ bind_cmd }} -U {{ designate_backend_bind9_workers }} -g",
"command": "/usr/sbin/{{ bind_cmd }} {{ designate_backend_bind9_cmdline_extras }}",
"config_files": [
{
"source": "{{ container_config_directory }}/named.conf",