nodes: add gce.dns02 and gce.dns03, remove AutoDNS nameservers
All checks were successful
bundlewrap/pipeline/head This commit looks good
All checks were successful
bundlewrap/pipeline/head This commit looks good
This commit is contained in:
parent
b70f9c9c9d
commit
de73552700
7 changed files with 60 additions and 44 deletions
|
@ -16,6 +16,8 @@ mx0 IN A 94.130.52.224
|
||||||
|
|
||||||
; Nameservers
|
; Nameservers
|
||||||
ns-1 IN A 34.89.208.78
|
ns-1 IN A 34.89.208.78
|
||||||
|
ns-2 IN A 35.187.109.249
|
||||||
|
ns-3 IN A 35.228.143.71
|
||||||
|
|
||||||
% for record in sorted(metadata_records):
|
% for record in sorted(metadata_records):
|
||||||
${record}
|
${record}
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
# This node is not actually part of this repository, it's a DNS server
|
|
||||||
# managed by AutoDNS. It needs a node file, because we're using that to
|
|
||||||
# auto-generate DNS configs.
|
|
||||||
|
|
||||||
nodes['a.ns14.net'] = {
|
|
||||||
'hostname': 'a.ns14.net',
|
|
||||||
'dummy': True,
|
|
||||||
'groups': {
|
|
||||||
'dns',
|
|
||||||
},
|
|
||||||
}
|
|
|
@ -1,11 +0,0 @@
|
||||||
# This node is not actually part of this repository, it's a DNS server
|
|
||||||
# managed by AutoDNS. It needs a node file, because we're using that to
|
|
||||||
# auto-generate DNS configs.
|
|
||||||
|
|
||||||
nodes['b.ns14.net'] = {
|
|
||||||
'hostname': 'b.ns14.net',
|
|
||||||
'dummy': True,
|
|
||||||
'groups': {
|
|
||||||
'dns',
|
|
||||||
},
|
|
||||||
}
|
|
|
@ -1,11 +0,0 @@
|
||||||
# This node is not actually part of this repository, it's a DNS server
|
|
||||||
# managed by AutoDNS. It needs a node file, because we're using that to
|
|
||||||
# auto-generate DNS configs.
|
|
||||||
|
|
||||||
nodes['c.ns14.net'] = {
|
|
||||||
'hostname': 'c.ns14.net',
|
|
||||||
'dummy': True,
|
|
||||||
'groups': {
|
|
||||||
'dns',
|
|
||||||
},
|
|
||||||
}
|
|
|
@ -1,11 +0,0 @@
|
||||||
# This node is not actually part of this repository, it's a DNS server
|
|
||||||
# managed by AutoDNS. It needs a node file, because we're using that to
|
|
||||||
# auto-generate DNS configs.
|
|
||||||
|
|
||||||
nodes['d.ns14.net'] = {
|
|
||||||
'hostname': 'd.ns14.net',
|
|
||||||
'dummy': True,
|
|
||||||
'groups': {
|
|
||||||
'dns',
|
|
||||||
},
|
|
||||||
}
|
|
29
nodes/gce/dns02.py
Normal file
29
nodes/gce/dns02.py
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
# ns-2.kunbox.net
|
||||||
|
# Belgium
|
||||||
|
|
||||||
|
nodes['gce.dns02'] = {
|
||||||
|
'bundles': set(),
|
||||||
|
'groups': {
|
||||||
|
'dns',
|
||||||
|
},
|
||||||
|
'metadata': {
|
||||||
|
'interfaces': {
|
||||||
|
'eth0': {
|
||||||
|
'ipv4': {
|
||||||
|
'10.132.0.2',
|
||||||
|
},
|
||||||
|
'gateway4': '10.132.0.1',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'external_ipv4': '35.187.109.249',
|
||||||
|
'powerdns': {
|
||||||
|
'my_hostname': 'ns-2.kunbox.net',
|
||||||
|
},
|
||||||
|
'vm': {
|
||||||
|
'cpu': 1,
|
||||||
|
'ram': 1,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'os': 'debian',
|
||||||
|
'os_version': (10,),
|
||||||
|
}
|
29
nodes/gce/dns03.py
Normal file
29
nodes/gce/dns03.py
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
# ns-3.kunbox.net
|
||||||
|
# Finland
|
||||||
|
|
||||||
|
nodes['gce.dns03'] = {
|
||||||
|
'bundles': set(),
|
||||||
|
'groups': {
|
||||||
|
'dns',
|
||||||
|
},
|
||||||
|
'metadata': {
|
||||||
|
'interfaces': {
|
||||||
|
'eth0': {
|
||||||
|
'ipv4': {
|
||||||
|
'10.166.0.2',
|
||||||
|
},
|
||||||
|
'gateway4': '10.166.0.1',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'external_ipv4': '35.228.143.71',
|
||||||
|
'powerdns': {
|
||||||
|
'my_hostname': 'ns-3.kunbox.net',
|
||||||
|
},
|
||||||
|
'vm': {
|
||||||
|
'cpu': 1,
|
||||||
|
'ram': 1,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'os': 'debian',
|
||||||
|
'os_version': (10,),
|
||||||
|
}
|
Loading…
Reference in a new issue