I HATE GOOGLE
All checks were successful
bundlewrap/pipeline/head This commit looks good

This commit is contained in:
Franzi 2020-08-20 10:01:34 +02:00
parent 4974494ee0
commit 54371cf289
Signed by: kunsi
GPG key ID: 12E3D2136B818350
3 changed files with 23 additions and 0 deletions

View file

@ -6,3 +6,7 @@ ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
% for ip, entries in sorted(node.metadata.get('hosts', {}).get('entries', {}).items()):
${ip} ${' '.join(sorted(entries))}
% endfor

View file

@ -20,4 +20,13 @@ groups['gce'] = {
'member_patterns': {
r"gce\..*",
},
'metadata': {
'hosts': {
'entries': {
'169.254.169.254': {
'metadata.google.internal',
},
},
},
},
}

View file

@ -6,6 +6,16 @@ nodes['gce.bind01'] = {
'dns',
},
'metadata': {
'hosts': {
'entries': {
# FIXME Google keeps adding those entries. Find out why
# and remove it.
'10.156.0.4': {
'bind01.europe-west3-c.c.omega-art-269710.internal',
'bind01',
},
},
},
'os': 'debian',
'os_release': 'buster',
},