Skip to content

Commit 0f7adb9

Browse files
authored
Merge pull request #1036 from yangyuwei/master
2 parents 4a1e89d + c65dfec commit 0f7adb9

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

tools/kubernetes/terraform/examples/v5e/outputs.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ output "kubernetes_cluster_host" {
1818
description = "GKE Cluster Host"
1919
}
2020

21-
output "nodepool_tpu_topology" {
22-
value = module.tpu-gke.nodepool_tpu_topology
23-
description = "GKE TPU topology"
21+
output "placement_policy_names" {
22+
value = module.tpu-gke.placement_policy_names
23+
description = "GKE TPU Placement Policy Names"
2424
}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
project_id = "tpu-prod-env-vlp-2nic"
2-
resource_name_prefix = "tpu-v5e-yangyuwei-latest5"
1+
project_id = "project-id"
2+
resource_name_prefix = "tpu-v5e-test"
33
region = "us-east5"
44
location = "us-east5-b"
55
tpu_node_pools = [{
66
zone = "us-east5-b"
77
node_count = 64
88
machine_type = "ct5lp-hightpu-4t"
99
topology = "16x16"
10-
policy = "sb-compact-test3"
10+
policy = "sb-compact-1"
1111
}]
1212
maintenance_interval = "PERIODIC"

tools/kubernetes/terraform/module/outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ output "kubernetes_cluster_host" {
1818
description = "GKE Cluster Host"
1919
}
2020

21-
output "nodepool_tpu_topology" {
21+
output "placement_policy_names" {
2222
value = flatten([
2323
google_container_node_pool.multihost_tpu[*].placement_policy[0].policy_name
2424
])
25-
description = "GKE TPU topology"
25+
description = "GKE TPU Placement Policy Names"
2626
}

0 commit comments

Comments
 (0)