From c3b17f3e6950dc56804d27dd8ac62baaae0e1244 Mon Sep 17 00:00:00 2001 From: Thomas Desrosiers <681004+thomasdesr@users.noreply.github.com> Date: Fri, 29 Mar 2024 01:55:39 -0700 Subject: [PATCH] Remove extranous arguments from examples (#2051) * Update Helm chart examples To remove an extraneous and possibly confusing argument Signed-off-by: Thomas Desrosiers <681004+thomasdesr@users.noreply.github.com> * Update another location * Update helm-chart/ray-cluster/README.md Co-authored-by: Kai-Hsun Chen Signed-off-by: Thomas Desrosiers <681004+thomasdesr@users.noreply.github.com> --------- Signed-off-by: Thomas Desrosiers <681004+thomasdesr@users.noreply.github.com> Co-authored-by: Kai-Hsun Chen --- docs/development/development.md | 2 +- helm-chart/ray-cluster/README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/development/development.md b/docs/development/development.md index aa51020578..d29966d214 100644 --- a/docs/development/development.md +++ b/docs/development/development.md @@ -35,6 +35,6 @@ To preview the KubeRay documentation locally, follow these steps: docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material ``` -- Open your web browser and navigate to to view the documentation. +- Open your web browser and navigate to to view the documentation. If you make any changes to the documentation files, the local preview will automatically update to reflect those changes. diff --git a/helm-chart/ray-cluster/README.md b/helm-chart/ray-cluster/README.md index 60026949af..9a77dd95b5 100644 --- a/helm-chart/ray-cluster/README.md +++ b/helm-chart/ray-cluster/README.md @@ -34,15 +34,15 @@ kubectl get pods # raycluster-kuberay-worker-workergroup-2jckt 1/1 Running 0 66s # Step 6: Forward the port of Dashboard -kubectl port-forward --address 0.0.0.0 svc/raycluster-kuberay-head-svc 8265:8265 +kubectl port-forward svc/raycluster-kuberay-head-svc 8265:8265 -# Step 7: Check ${YOUR_IP}:8265 for the Dashboard (e.g. 127.0.0.1:8265) +# Step 7: Check 127.0.0.1:8265 for the Dashboard # Step 8: Log in to Ray head Pod and execute a job. kubectl exec -it ${RAYCLUSTER_HEAD_POD} -- bash python -c "import ray; ray.init(); print(ray.cluster_resources())" # (in Ray head Pod) -# Step 9: Check ${YOUR_IP}:8265/#/job. The status of the job should be "SUCCEEDED". +# Step 9: Check 127.0.0.1:8265/#/job. The status of the job should be "SUCCEEDED". # Step 10: Uninstall RayCluster helm uninstall raycluster