Skip to content

Commit

Permalink
Remove headless service creation from terraform (now done by ray-oper…
Browse files Browse the repository at this point in the history
…ator)
  • Loading branch information
ryanaoleary committed Mar 6, 2024
1 parent 11e9f52 commit 3bba6be
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions modules/kuberay-cluster/kuberay.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,3 @@ resource "helm_release" "ray-cluster" {
})
]
}

resource "kubernetes_service" "tpu-worker-svc" {
count = var.enable_tpu ? 1 : 0
metadata {
name = "${helm_release.ray-cluster.name}-kuberay-tpu-worker-svc"
}
spec {
selector = {
"cloud.google.com/gke-ray-node-type" = "worker"
}
cluster_ip = "None"
}
}

0 comments on commit 3bba6be

Please sign in to comment.