Skip to content

Commit

Permalink
Fixes IP addresses for virtual machines (#270)
Browse files Browse the repository at this point in the history
In sandbox, somehow the IPv4 addresses we had configured for the
loadbalancer were all wrong, and (just coincidentally?) the wrong IP
addresses happened to be assigned to VMs in the managed instance group
such that things still worked, even though the loadbalancer was being
bypassed. This seems like a huge coincidence, and may have been user
error on my part at some point in the past.

Additionally, after I brought the staging VMs under Terraform control
their ephemeral IPv6 addresses changed, and this commit updates them.
  • Loading branch information
nkinkade authored Jun 2, 2023
1 parent c254788 commit 28860af
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions sites/chs0t.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ sitesDefault {
disk: 'pd-standard',
network+: {
ipv4+: {
address: '34.138.51.232/32',
address: '34.148.229.79/32',
},
},
project: 'mlab-sandbox',
Expand All @@ -25,7 +25,7 @@ sitesDefault {
address: '34.23.227.171/32',
},
ipv6: {
address: '2600:1900:4020:31cd:0:5d::/128',
address: '2600:1900:4020:31cd:0:5f::/128',
},
},
project: 'mlab-sandbox',
Expand Down
4 changes: 2 additions & 2 deletions sites/iad08.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sitesDefault {
address: '34.145.210.246/32',
},
ipv6: {
address: '2600:1900:4090:6589::/128',
address: '2600:1900:4090:6589:0:1::/128',
},
},
project: 'mlab-staging',
Expand All @@ -29,7 +29,7 @@ sitesDefault {
address: '35.245.211.241/32',
},
ipv6: {
address: null,
address: '2600:1900:4090:6589:0:2::/128',
},
},
project: 'mlab-staging',
Expand Down
2 changes: 1 addition & 1 deletion sites/lax08.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sitesDefault {
address: '34.102.101.93/32',
},
ipv6: {
address: '2600:1900:4120:7571::/128',
address: '2600:1900:4120:7571:0:1::/128',
},
},
project: 'mlab-staging',
Expand Down
2 changes: 1 addition & 1 deletion sites/lax0t.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ sitesDefault {
disk: 'pd-standard',
network+: {
ipv4+: {
address: '34.94.92.192/32',
address: '34.94.127.235/32',
},
},
project: 'mlab-sandbox',
Expand Down
2 changes: 1 addition & 1 deletion sites/oma01.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ sitesDefault {
address: '104.197.205.150/32',
},
ipv6: {
address: '2600:1900:4000:bcb9::/128',
address: '2600:1900:4000:bcb9:0:5::/128',
},
},
project: 'mlab-staging',
Expand Down
2 changes: 1 addition & 1 deletion sites/pdx0t.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ sitesDefault {
disk: 'pd-standard',
network+: {
ipv4+: {
address: '34.83.63.126/32',
address: '34.127.102.87/32',
},
},
project: 'mlab-sandbox',
Expand Down

0 comments on commit 28860af

Please sign in to comment.