-
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 virtual sites BOM05 and DFW10 + fixes IPv6 for two VMs (#305)
* Adds new virtual sites BOM05 and DFW10 The metros are overloaded due to periodic, sychronized client integrations and/or are just too busy, causing switch discards. These new sites should help to alleviate the problems until we can find more permanent and long term solution. * Updates IPv6 for mlab1-ber01 and mlab1-doh01 There appears to be some sort of bug in the interaction of Terraform and GCP in which new VMs get an ephemeral IPv6 address, even though the Terraform configs specify using the static IPv6 address that Terraform creates. You can run "terraform plan" and it will tell you that it is going to update the IPv6 address to the static one, but "terraform apply" has no apparent affect, and when you run "terraform plan" again it still wants to update the IPv6 address to the static one, even though it told you it had already done this, with no apparent errors. The IPv6 stuff is very new to the Google provider, and this is likely a bug we are hitting.
- Loading branch information
Showing
5 changed files
with
136 additions
and
2 deletions.
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 |
---|---|---|
@@ -0,0 +1,66 @@ | ||
local sitesDefault = import 'sites/_default_virtual.jsonnet'; | ||
|
||
sitesDefault { | ||
name: 'bom05', | ||
annotations+: { | ||
provider: 'gcp', | ||
}, | ||
machines+: { | ||
mlab1+: { | ||
network+: { | ||
ipv4+: { | ||
address: '35.200.190.37/32', | ||
}, | ||
ipv6+: { | ||
address: '2600:1900:40a0:f2f2:0:11::/128', | ||
}, | ||
}, | ||
project: 'mlab-oti', | ||
}, | ||
mlab2: { | ||
disk: 'pd-ssd', | ||
iface: 'ens4', | ||
model: 'n2-highcpu-4', | ||
network: { | ||
ipv4: { | ||
address: '35.200.235.108/32', | ||
}, | ||
ipv6: { | ||
address: '2600:1900:40a0:f2f2:0:10::/128', | ||
}, | ||
}, | ||
project: 'mlab-oti', | ||
}, | ||
mlab3: { | ||
disk: 'pd-ssd', | ||
iface: 'ens4', | ||
model: 'n2-highcpu-4', | ||
network: { | ||
ipv4: { | ||
address: '34.93.231.55/32', | ||
}, | ||
ipv6: { | ||
address: '2600:1900:40a0:f2f2:0:f::/128', | ||
}, | ||
}, | ||
project: 'mlab-oti', | ||
}, | ||
}, | ||
transit+: { | ||
provider: 'Google LLC', | ||
uplink: '1g', | ||
asn: 'AS396982', | ||
}, | ||
location+: { | ||
continent_code: 'AS', | ||
country_code: 'IN', | ||
metro: 'bom', | ||
city: 'Mumbai', | ||
state: '', | ||
latitude: 19.0886, | ||
longitude: 72.8681, | ||
}, | ||
lifecycle+: { | ||
created: '2023-11-13', | ||
}, | ||
} |
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,66 @@ | ||
local sitesDefault = import 'sites/_default_virtual.jsonnet'; | ||
|
||
sitesDefault { | ||
name: 'dfw10', | ||
annotations+: { | ||
provider: 'gcp', | ||
}, | ||
machines+: { | ||
mlab1+: { | ||
network+: { | ||
ipv4+: { | ||
address: '34.174.31.95/32', | ||
}, | ||
ipv6+: { | ||
address: '2600:1901:8140:9cd3:0:1b::/128', | ||
}, | ||
}, | ||
project: 'mlab-oti', | ||
}, | ||
mlab2: { | ||
disk: 'pd-ssd', | ||
iface: 'ens4', | ||
model: 'n2-highcpu-4', | ||
network: { | ||
ipv4: { | ||
address: '34.174.90.19/32', | ||
}, | ||
ipv6: { | ||
address: '2600:1901:8140:9cd3:0:1c::/128', | ||
}, | ||
}, | ||
project: 'mlab-oti', | ||
}, | ||
mlab3: { | ||
disk: 'pd-ssd', | ||
iface: 'ens4', | ||
model: 'n2-highcpu-4', | ||
network: { | ||
ipv4: { | ||
address: '34.174.108.55/32', | ||
}, | ||
ipv6: { | ||
address: '2600:1901:8140:9cd3:0:1d::/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-13', | ||
}, | ||
} |
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