Skip to content

Commit

Permalink
Update gce zones 8 12 (#1069)
Browse files Browse the repository at this point in the history
* adding australia-southeast2 region and zones

* Adding asia south 2 region and zones

* adding missing zones for aws and azure
  • Loading branch information
bathina2 committed Aug 12, 2021
1 parent 68e326e commit a997709
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/blockstorage/awsebs/awsebs.go
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,9 @@ func staticRegionToZones(region string) ([]string, error) {
"us-east-1-phl-1a",
"us-east-1-wl1-atl-wlz-1",
"us-east-1-wl1-bos-wlz-1",
"us-east-1-wl1-chi-wlz-1",
"us-east-1-wl1-dfw-wlz-1",
"us-east-1-wl1-iah-wlz-1",
"us-east-1-wl1-mia-wlz-1",
"us-east-1-wl1-nyc-wlz-1",
"us-east-1-wl1-was-wlz-1",
Expand All @@ -774,10 +776,12 @@ func staticRegionToZones(region string) ([]string, error) {
"us-west-2b",
"us-west-2c",
"us-west-2d",
"us-west-2-den-1a",
"us-west-2-lax-1a",
"us-west-2-lax-1b",
"us-west-2-wl1-den-wlz-1",
"us-west-2-wl1-las-wlz-1",
"us-west-2-wl1-phx-wlz-1",
"us-west-2-wl1-sea-wlz-1",
"us-west-2-wl1-sfo-wlz-1",
}, nil
Expand Down
2 changes: 2 additions & 0 deletions pkg/blockstorage/azure/azuredisk.go
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,8 @@ func staticRegionToZones(region string) ([]string, error) {
return nil, nil
case "norwaywest":
return nil, nil
case "qatarcentral":
return nil, nil
case "southafricanorth":
return nil, nil
case "southafricawest":
Expand Down
6 changes: 6 additions & 0 deletions pkg/blockstorage/gcepd/gcepd.go
Original file line number Diff line number Diff line change
Expand Up @@ -629,6 +629,12 @@ func staticRegionToZones(region string) ([]string, error) {
"asia-south1-b",
"asia-south1-c",
}, nil
case "asia-south2":
return []string{
"asia-south2-a",
"asia-south2-b",
"asia-south2-c",
}, nil
case "asia-southeast1":
return []string{
"asia-southeast1-a",
Expand Down

0 comments on commit a997709

Please sign in to comment.