Skip to content

Commit e67b971

Browse files
Changed zone for tpu
1 parent a63690f commit e67b971

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tpu/src/test/java/tpu/TpuVmIT.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@
4242
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)
4343
public class TpuVmIT {
4444
private static final String PROJECT_ID = System.getenv("GOOGLE_CLOUD_PROJECT");
45-
private static final String ZONE = "us-east5-a";
45+
private static final String ZONE = "us-south1-a";
4646
static String javaVersion = System.getProperty("java.version").substring(0, 2);
4747
private static final String NODE_NAME = "test-tpu-" + javaVersion + "-"
4848
+ UUID.randomUUID().toString().substring(0, 8);
49-
private static final String TPU_TYPE = "v5p-8";
49+
private static final String TPU_TYPE = "v5litepod-1";
5050
private static final String TPU_SOFTWARE_VERSION = "tpu-vm-tf-2.14.1";
5151
private static final String NODE_PATH_NAME =
5252
String.format("projects/%s/locations/%s/nodes/%s", PROJECT_ID, ZONE, NODE_NAME);
@@ -79,7 +79,6 @@ public static void cleanup() throws Exception {
7979
@Test
8080
@Order(1)
8181
public void testCreateTpuVm() throws IOException, ExecutionException, InterruptedException {
82-
8382
Node node = CreateTpuVm.createTpuVm(
8483
PROJECT_ID, ZONE, NODE_NAME, TPU_TYPE, TPU_SOFTWARE_VERSION);
8584

0 commit comments

Comments
 (0)