From c476aec78fb7982a1f7555639f973b2407dd104c Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Tue, 18 Apr 2023 16:25:34 +1000 Subject: [PATCH] dns : add Jammy refresh servers This adds the new Jammy refresh secondary nameservers as hosts to be notified and allowed to do zone transfers. These hosts will still be talking to adns1, which is set in dns_master_ipv4/dns_master_ipv6. After this, we should be able to query these nameservers Change-Id: I658dfd890c5d3c63caac7c781403aef4158d3fc8 --- inventory/service/group_vars/adns-primary.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/inventory/service/group_vars/adns-primary.yaml b/inventory/service/group_vars/adns-primary.yaml index a6c401a82c..7fed4e0c56 100644 --- a/inventory/service/group_vars/adns-primary.yaml +++ b/inventory/service/group_vars/adns-primary.yaml @@ -6,8 +6,14 @@ dns_repos: - name: zone-gating.dev url: https://opendev.org/opendev/zone-gating.dev dns_notify: + # ns1.opendev.org - 104.239.140.165 + # ns2.opendev.org - 162.253.55.16 + # ns03.opendev.org + - 104.239.145.127 + # ns04.opendev.org + - 162.253.55.23 iptables_extra_allowed_hosts: - protocol: tcp port: 53 @@ -15,3 +21,9 @@ iptables_extra_allowed_hosts: - protocol: tcp port: 53 hostname: ns2.opendev.org + - protocol: tcp + port: 53 + hostname: ns03.opendev.org + - protocol: tcp + port: 53 + hostname: ns04.opendev.org