nodes: add gce.dns02 and gce.dns03, remove AutoDNS nameservers
All checks were successful
bundlewrap/pipeline/head This commit looks good

This commit is contained in:
Franzi 2020-10-25 10:59:01 +01:00
parent b70f9c9c9d
commit de73552700
Signed by: kunsi
GPG key ID: 12E3D2136B818350
7 changed files with 60 additions and 44 deletions

29
nodes/gce/dns02.py Normal file
View 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
View 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,),
}