Skip to content

Commit

Permalink
Adds new virtual site DFW11 (#307)
Browse files Browse the repository at this point in the history
  • Loading branch information
nkinkade authored Nov 28, 2023
1 parent 57aab27 commit e70cb2a
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 0 deletions.
1 change: 1 addition & 0 deletions sites.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ local sites = {
dfw08: import 'sites/dfw08.jsonnet',
dfw09: import 'sites/dfw09.jsonnet',
dfw10: import 'sites/dfw10.jsonnet',
dfw11: import 'sites/dfw11.jsonnet',
doh01: import 'sites/doh01.jsonnet',
dub01: import 'sites/dub01.jsonnet',
eze01: import 'sites/eze01.jsonnet',
Expand Down
66 changes: 66 additions & 0 deletions sites/dfw11.jsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
local sitesDefault = import 'sites/_default_virtual.jsonnet';

sitesDefault {
name: 'dfw11',
annotations+: {
provider: 'gcp',
},
machines+: {
mlab1+: {
network+: {
ipv4+: {
address: '34.174.89.59/32',
},
ipv6+: {
address: '2600:1901:8140:9cd3:0:25::/128',
},
},
project: 'mlab-oti',
},
mlab2: {
disk: 'pd-ssd',
iface: 'ens4',
model: 'n2-highcpu-4',
network: {
ipv4: {
address: '34.174.138.130/32',
},
ipv6: {
address: '2600:1901:8140:9cd3:0:24::/128',
},
},
project: 'mlab-oti',
},
mlab3: {
disk: 'pd-ssd',
iface: 'ens4',
model: 'n2-highcpu-4',
network: {
ipv4: {
address: '34.174.24.56/32',
},
ipv6: {
address: '2600:1901:8140:9cd3:0:26::/128',
},
},
project: 'mlab-oti',
},
},
transit+: {
provider: 'Google LLC',
uplink: '1g',
asn: 'AS396982',
},
location+: {
continent_code: 'NA',
country_code: 'US',
metro: 'dfw',
city: 'Dallas',
state: 'TX',
latitude: 32.8969,
longitude: -97.0381,
},
lifecycle+: {
created: '2023-11-28',
},
}

0 comments on commit e70cb2a

Please sign in to comment.