PowerDNS instead of bind9 #2
1 changed files with 33 additions and 18 deletions
|
@ -52,25 +52,40 @@ def get_ips_of_primary_nameservers(metadata):
|
|||
|
||||
|
||||
@metadata_reactor
|
||||
def get_ips_of_primary_nameserver(metadata):
|
||||
if not metadata.get('powerdns/is_secondary', False):
|
||||
return {}
|
||||
def generate_dns_entries_for_nodes(metadata):
|
||||
results = set()
|
||||
|
||||
ips = set()
|
||||
for rnode in repo.nodes:
|
||||
if not node.has_bundle('powerdns'):
|
||||
continue
|
||||
node_name_split = rnode.name.split('.')
|
||||
node_name_split.reverse()
|
||||
dns_name = '.'.join(node_name_split)
|
||||
ip4 = None
|
||||
ip6 = None
|
||||
|
||||
# We only need this for GCE, because machines over there don't
|
||||
# have a public ipv4 address.
|
||||
if rnode.metadata.get('external_ipv4', None):
|
||||
ip4 = rnode.metadata.get('external_ipv4')
|
||||
|
||||
for iface, config in sorted(rnode.metadata.get('interfaces', {}).items()):
|
||||
if not ip4 and 'ipv4' in config:
|
||||
ip4 = sorted(config['ipv4'])[0]
|
||||
|
||||
if not ip6 and 'ipv6' in config:
|
||||
ip6 = sorted(config['ipv6'])[0]
|
||||
|
||||
if ip4:
|
||||
results.add('{} IN A {}'.format(dns_name, ip4))
|
||||
|
||||
if ip6:
|
||||
results.add('{} IN AAAA {}'.format(dns_name, ip6))
|
||||
|
||||
if node.name in rnode.metadata.get('powerdns/my_secondary_servers', set()):
|
||||
return {
|
||||
'powerdns': {
|
||||
'my_primary_server': {
|
||||
'ips': {
|
||||
str(ip) for ip in repo.libs.tools.resolve_identifier(repo, rnode.name)
|
||||
'bind-zones': {
|
||||
'kunbox.net': {
|
||||
'records': results,
|
||||
},
|
||||
'node': rnode.name,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
return {}
|
||||
|
|
Loading…
Reference in a new issue