Skip to content

Commit 0edc120

Browse files
Change region to us-east4
1 parent 6671bc0 commit 0edc120

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/e2e/tests/setup_e2e_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var (
3838
project = flag.String("project", "", "Project to run tests in")
3939
serviceAccount = flag.String("service-account", "", "Service account to bring up instance with")
4040
architecture = flag.String("arch", "amd64", "Architecture pd csi driver build on")
41-
zones = flag.String("zones", "us-central1-c,us-central1-a", "Zones to run tests in. If there are multiple zones, separate each by comma")
41+
zones = flag.String("zones", "us-east4-a,us-east4-c", "Zones to run tests in. If there are multiple zones, separate each by comma")
4242
machineType = flag.String("machine-type", "n2-standard-2", "Type of machine to provision instance on")
4343
imageURL = flag.String("image-url", "projects/debian-cloud/global/images/family/debian-11", "OS image url to get image from")
4444
runInProw = flag.Bool("run-in-prow", false, "If true, use a Boskos loaned project and special CI service accounts and ssh keys")

test/e2e/tests/single_zone_e2e_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ var _ = Describe("GCE PD CSI Driver", func() {
277277
instance := testContext.Instance
278278

279279
if diskType == hdtDiskType {
280-
z = "us-central1-a"
280+
z = "us-east4-a"
281281
}
282282

283283
volName, _ := createAndValidateUniqueZonalDisk(client, p, z, diskType)
@@ -300,7 +300,7 @@ var _ = Describe("GCE PD CSI Driver", func() {
300300
},
301301
Entry("on pd-standard", standardDiskType),
302302
Entry("on pd-extreme", extremeDiskType),
303-
Entry("on pd-extreme", hdtDiskType),
303+
Entry("on hyperdisk-throughput", hdtDiskType),
304304
)
305305

306306
DescribeTable("Should complete publish/unpublish lifecycle with underspecified volume ID and missing volume",

0 commit comments

Comments
 (0)