88 lines
2 KiB
Python
88 lines
2 KiB
Python
from ipaddress import ip_interface
|
|
|
|
|
|
defaults = {
|
|
'apt': {
|
|
'packages': {
|
|
'bind9': {},
|
|
},
|
|
},
|
|
'bind': {
|
|
'zones': {},
|
|
},
|
|
'telegraf': {
|
|
'config': {
|
|
'inputs': {
|
|
'bind': [{
|
|
'urls': ['http://localhost:8053/xml/v3'],
|
|
'gather_memory_contexts': False,
|
|
'gather_views': True,
|
|
}],
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
|
|
@metadata_reactor.provides(
|
|
'dns',
|
|
)
|
|
def dns(metadata):
|
|
return {
|
|
'dns': {
|
|
metadata.get('bind/hostname'): repo.libs.dns.get_a_records(metadata),
|
|
}
|
|
}
|
|
|
|
|
|
@metadata_reactor.provides(
|
|
'bind/zones',
|
|
)
|
|
def collect_records(metadata):
|
|
zones = {}
|
|
|
|
for other_node in repo.nodes:
|
|
for fqdn, records in other_node.metadata.get('dns').items():
|
|
matching_zones = sorted(
|
|
filter(
|
|
lambda potential_zone: fqdn.endswith(potential_zone),
|
|
metadata.get('bind/zones').keys()
|
|
),
|
|
key=len,
|
|
)
|
|
if matching_zones:
|
|
zone = matching_zones[-1]
|
|
else:
|
|
continue
|
|
|
|
name = fqdn[0:-len(zone) - 1]
|
|
|
|
for type, values in records.items():
|
|
for value in values:
|
|
zones\
|
|
.setdefault(zone, [])\
|
|
.append(
|
|
{'name': name, 'type': type, 'value': value}
|
|
)
|
|
|
|
return {
|
|
'bind': {
|
|
'zones': zones,
|
|
},
|
|
}
|
|
|
|
|
|
@metadata_reactor.provides(
|
|
'bind/zones',
|
|
)
|
|
def ns_records(metadata):
|
|
return {
|
|
'bind': {
|
|
'zones': {
|
|
zone: [
|
|
{'name': '@', 'type': 'NS', 'value': f"{metadata.get('bind/hostname')}."},
|
|
{'name': '@', 'type': 'NS', 'value': f"{metadata.get('bind/secondary_hostname')}."},
|
|
] for zone in metadata.get('bind/zones').keys()
|
|
},
|
|
},
|
|
}
|