Skip to content

Commit

Permalink
Adds new site HNL02, retroactively retires HNL01 (#331)
Browse files Browse the repository at this point in the history
HNL01 was a GTT site that was only operational for about a year. It went
offline in June of 2022, but remained here in siteinfo. This commit
retroactively retires HNL01 with the date that it actually went offline.

HNL01 is being replaced by HNL02. The hardware is the same, but HNL02's circuit
is provided by Cogent and has completely different IPs than HNL01.
  • Loading branch information
nkinkade authored Apr 2, 2024
1 parent 302f982 commit d630e50
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 1 deletion.
1 change: 1 addition & 0 deletions retired.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ local retiredSites = {
hnd03: import 'sites/hnd03.jsonnet',
hnd04: import 'sites/hnd04.jsonnet',
hnd06: import 'sites/hnd06.jsonnet',
hnl01: import 'sites/hnl01.jsonnet',
iad01: import 'sites/iad01.jsonnet',
iad05: import 'sites/iad05.jsonnet',
iad06: import 'sites/iad06.jsonnet',
Expand Down
2 changes: 1 addition & 1 deletion sites.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ local sites = {
hnd02: import 'sites/hnd02.jsonnet',
hnd05: import 'sites/hnd05.jsonnet',
hnd07: import 'sites/hnd07.jsonnet',
hnl01: import 'sites/hnl01.jsonnet',
hnl02: import 'sites/hnl02.jsonnet',
iad02: import 'sites/iad02.jsonnet',
iad03: import 'sites/iad03.jsonnet',
iad04: import 'sites/iad04.jsonnet',
Expand Down
1 change: 1 addition & 0 deletions sites/hnl01.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,6 @@ sitesDefault {
},
lifecycle+: {
created: '2021-08-24',
retired: '2022-06-15',
},
}
48 changes: 48 additions & 0 deletions sites/hnl02.jsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
local sitesDefault = import 'sites/_default.jsonnet';

sitesDefault {
name: 'hnl02',
annotations+: {
type: 'physical',
},
machines+: {
mlab1+: {
model: 'r640',
},
mlab2+: {
model: 'r640',
},
mlab3+: {
model: 'r640',
},
mlab4+: {
model: 'r640',
},
},
network+: {
ipv4+: {
prefix: '38.64.64.64/26',
},
ipv6+: {
prefix: '2001:550:a03::/64',
},
},
transit+: {
provider: 'Cogent Communications',
uplink: '10g',
asn: 'AS174',
},
location+: {
continent_code: 'NA',
country_code: 'US',
metro: 'hnl',
city: 'Honolulu',
state: 'HI',
latitude: 21.3254,
longitude: -157.9240,
},
lifecycle+: {
created: '2024-04-02',
},
}

0 comments on commit d630e50

Please sign in to comment.