Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 2 additions & 3 deletions apiserver/HACluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ kubectl apply -f <your location>/kuberay/apiserver/test/cluster/code_configmap.y
To create a Ray cluster we can use the following curl command:

```sh
curl -X POST 'localhost:8888/apis/v1alpha2/namespaces/default/clusters' \
curl -X POST 'localhost:8888/apis/v1/namespaces/default/clusters' \
--header 'Content-Type: application/json' \
--data '{
"name": "ha-cluster",
Expand Down Expand Up @@ -151,8 +151,7 @@ password.
"num-cpu": "0"
```

Where the value of `REDIS_PASSWORD` comes from environment variable (below). Additionally `num-cpus: 0` ensures
that that no application code runs on a head node.
Where the value of `REDIS_PASSWORD` comes from environment variable (below). Additionally `num-cpus: 0` ensures that no application code runs on a head node.

The following environment variable have to be added here:

Expand Down
Loading