Merge "Ensure non-empty host list in pools"

This commit is contained in:
Zuul 2023-10-30 17:23:48 +00:00 committed by Gerrit Code Review
commit 76238eade8
2 changed files with 5 additions and 5 deletions

View File

@ -65,10 +65,10 @@ class designate::backend::bind9 (
$rndc_controls = undef,
$rndc_port = 953,
Hash[Integer, String] $ns_records = {1 => 'ns1.example.org.'},
Array[String[1]] $nameservers = ['127.0.0.1'],
Array[String[1]] $bind9_hosts = ['127.0.0.1'],
Array[String[1], 1] $nameservers = ['127.0.0.1'],
Array[String[1], 1] $bind9_hosts = ['127.0.0.1'],
$dns_port = 53,
Array[String[1]] $mdns_hosts = ['127.0.0.1'],
Array[String[1], 1] $mdns_hosts = ['127.0.0.1'],
$mdns_port = 5354,
Array[String[1]] $also_notifies = [],
Boolean $configure_bind = true,

View File

@ -43,9 +43,9 @@
#
class designate::backend::pdns4 (
String[1] $api_token,
Array[String[1]] $pdns4_hosts = ['127.0.0.1'],
Array[String[1], 1] $pdns4_hosts = ['127.0.0.1'],
$pdns4_port = 53,
Array[String[1]] $mdns_hosts = ['127.0.0.1'],
Array[String[1], 1] $mdns_hosts = ['127.0.0.1'],
$mdns_port = 5354,
String[1] $api_endpoint = 'http://127.0.0.1:8081',
Optional[String[1]] $tsigkey_name = undef,