Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #412

Merged
merged 3 commits into from
Mar 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ray-on-gke/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ To submit a Ray job, first establish a connection to the Ray head. For this exam
to connect to the Ray head via localhost.

```bash
$ kubectl port-forward --address 0.0.0.0 service/example-cluster-kuberay-head-svc 8265:8265 &
$ kubectl -n ml port-forward service/example-cluster-kuberay-head-svc 8265 &
```

Submit a Ray job that prints resources available in your Ray cluster:
Expand Down Expand Up @@ -79,7 +79,7 @@ To use the client, first establish a connection to the Ray head. For this exampl
to connect to the Ray head Service via localhost.

```bash
$ kubectl port-forward --address 0.0.0.0 service/example-cluster-kuberay-head-svc 10001:10001 &
$ kubectl -n ml port-forward service/example-cluster-kuberay-head-svc 10001 &
```

Next, define a Python script containing remote code you want to run on your Ray cluster. Similar to the previous example,
Expand Down