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 }}"