Skip to content

Commit c3b17f3

Browse files
Remove extranous arguments from examples (#2051)
* Update Helm chart examples To remove an extraneous and possibly confusing argument Signed-off-by: Thomas Desrosiers <[email protected]> * Update another location * Update helm-chart/ray-cluster/README.md Co-authored-by: Kai-Hsun Chen <[email protected]> Signed-off-by: Thomas Desrosiers <[email protected]> --------- Signed-off-by: Thomas Desrosiers <[email protected]> Co-authored-by: Kai-Hsun Chen <[email protected]>
1 parent bbb65b4 commit c3b17f3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/development/development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ To preview the KubeRay documentation locally, follow these steps:
3535
docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material
3636
```
3737

38-
- Open your web browser and navigate to <http://0.0.0.0:8000/kuberay/> to view the documentation.
38+
- Open your web browser and navigate to <http://127.0.0.1:8000/kuberay/> to view the documentation.
3939

4040
If you make any changes to the documentation files, the local preview will automatically update to reflect those changes.

helm-chart/ray-cluster/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ kubectl get pods
3434
# raycluster-kuberay-worker-workergroup-2jckt 1/1 Running 0 66s
3535

3636
# Step 6: Forward the port of Dashboard
37-
kubectl port-forward --address 0.0.0.0 svc/raycluster-kuberay-head-svc 8265:8265
37+
kubectl port-forward svc/raycluster-kuberay-head-svc 8265:8265
3838

39-
# Step 7: Check ${YOUR_IP}:8265 for the Dashboard (e.g. 127.0.0.1:8265)
39+
# Step 7: Check 127.0.0.1:8265 for the Dashboard
4040

4141
# Step 8: Log in to Ray head Pod and execute a job.
4242
kubectl exec -it ${RAYCLUSTER_HEAD_POD} -- bash
4343
python -c "import ray; ray.init(); print(ray.cluster_resources())" # (in Ray head Pod)
4444

45-
# Step 9: Check ${YOUR_IP}:8265/#/job. The status of the job should be "SUCCEEDED".
45+
# Step 9: Check 127.0.0.1:8265/#/job. The status of the job should be "SUCCEEDED".
4646

4747
# Step 10: Uninstall RayCluster
4848
helm uninstall raycluster

0 commit comments

Comments
 (0)