From 3f6a50208d46befa46793d3abc4bd93d64cb9436 Mon Sep 17 00:00:00 2001 From: Yusuke Tsutsumi Date: Mon, 10 Oct 2022 20:33:23 +0000 Subject: [PATCH] tests: changing gcp_tpu_node side v2-8 seems to be in high demand causing test failures. changing it to v2-32 seems to pass more consistently. --- .../targets/gcp_tpu_node/tasks/autogen.yml | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tests/integration/targets/gcp_tpu_node/tasks/autogen.yml b/tests/integration/targets/gcp_tpu_node/tasks/autogen.yml index eeadf54..e44d632 100644 --- a/tests/integration/targets/gcp_tpu_node/tasks/autogen.yml +++ b/tests/integration/targets/gcp_tpu_node/tasks/autogen.yml @@ -16,8 +16,8 @@ - name: delete a node google.cloud.gcp_tpu_node: name: "{{ resource_name }}" - zone: us-central1-b - accelerator_type: v2-8 + zone: us-central1-a + accelerator_type: "v2-32" tensorflow_version: '2.10.0' cidr_block: 10.2.0.0/29 project: "{{ gcp_project }}" @@ -28,8 +28,8 @@ - name: create a node google.cloud.gcp_tpu_node: name: "{{ resource_name }}" - zone: us-central1-b - accelerator_type: v2-8 + zone: us-central1-a + accelerator_type: "v2-32" tensorflow_version: '2.10.0' cidr_block: 10.2.0.0/29 project: "{{ gcp_project }}" @@ -43,7 +43,7 @@ - result.changed == true - name: verify that node was created google.cloud.gcp_tpu_node_info: - zone: us-central1-b + zone: us-central1-a project: "{{ gcp_project }}" auth_kind: "{{ gcp_cred_kind }}" service_account_file: "{{ gcp_cred_file }}" @@ -58,8 +58,8 @@ - name: create a node that already exists google.cloud.gcp_tpu_node: name: "{{ resource_name }}" - zone: us-central1-b - accelerator_type: v2-8 + zone: us-central1-a + accelerator_type: "v2-32" tensorflow_version: '2.10.0' cidr_block: 10.2.0.0/29 project: "{{ gcp_project }}" @@ -75,8 +75,8 @@ - name: delete a node google.cloud.gcp_tpu_node: name: "{{ resource_name }}" - zone: us-central1-b - accelerator_type: v2-8 + zone: us-central1-a + accelerator_type: "v2-32" tensorflow_version: '2.10.0' cidr_block: 10.2.0.0/29 project: "{{ gcp_project }}" @@ -90,7 +90,7 @@ - result.changed == true - name: verify that node was deleted google.cloud.gcp_tpu_node_info: - zone: us-central1-b + zone: us-central1-a project: "{{ gcp_project }}" auth_kind: "{{ gcp_cred_kind }}" service_account_file: "{{ gcp_cred_file }}" @@ -105,8 +105,8 @@ - name: delete a node that does not exist google.cloud.gcp_tpu_node: name: "{{ resource_name }}" - zone: us-central1-b - accelerator_type: v2-8 + zone: us-central1-a + accelerator_type: "v2-32" tensorflow_version: '2.10.0' cidr_block: 10.2.0.0/29 project: "{{ gcp_project }}"