From bb1b450c3061e08c12bfe217519fbfa51f60f2b2 Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Thu, 21 Dec 2017 13:48:43 -0800 Subject: [PATCH] Add ns3.openstack.org This is hosted in rax to test some theories about ipv6 reverse dns. Change-Id: I791490351d93878db296f3b6d8184f8b125c2dcb --- manifests/site.pp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manifests/site.pp b/manifests/site.pp index 764e68e5a0..98c5fd2ff7 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -836,13 +836,14 @@ node /^adns\d+\.openstack\.org$/ { iptables_allowed_hosts => [ {protocol => 'tcp', port => '53', hostname => 'ns1.openstack.org'}, {protocol => 'tcp', port => '53', hostname => 'ns2.openstack.org'}, + {protocol => 'tcp', port => '53', hostname => 'ns3.openstack.org'}, ], } class { 'openstack_project::master_nameserver': tsig_key => hiera('tsig_key', {}), dnssec_keys => hiera_hash('dnssec_keys', {}), - notifies => concat(dns_a('ns1.openstack.org'), dns_a('ns2.openstack.org')), + notifies => concat(dns_a('ns1.openstack.org'), dns_a('ns2.openstack.org'), dns_a('ns3.openstack.org')), } }