-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds new site HNL02, retroactively retires HNL01 (#331)
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
Showing
4 changed files
with
51 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,5 +43,6 @@ sitesDefault { | |
}, | ||
lifecycle+: { | ||
created: '2021-08-24', | ||
retired: '2022-06-15', | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
}, | ||
} | ||
|