Skip to content

Commit cdedc41

Browse files
committed
remove json example and edit tar file name
1 parent ee12867 commit cdedc41

File tree

1 file changed

+2
-15
lines changed

1 file changed

+2
-15
lines changed

docs/enterprise/embedded-manage-nodes.mdx

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -80,23 +80,10 @@ To automate controller node joins with Embedded Cluster:
8080
```
8181
sudo ./your-app-slug join print-command
8282
83-
curl -k https://172.17.0.2:30000/api/v1/embedded-cluster/binary -o embedded-cluster.tar.gz && \
84-
tar -xvf embedded-cluster.tar.gz && \
83+
curl -k https://172.17.0.2:30000/api/v1/embedded-cluster/binary -o your-app-slug.tar.gz && \
84+
tar -xvf your-app-slug.tar.gz && \
8585
sudo ./embedded-cluster join 172.17.0.2:30000 1234aBcD
8686
```
87-
**Example with JSON output:**
88-
89-
```
90-
sudo ./your-app-slug join print-command -ojson
91-
92-
{
93-
"commands": [
94-
"curl -k https://172.17.0.2:30000/api/v1/embedded-cluster/binary -o embedded-cluster.tar.gz",
95-
"tar -xvf embedded-cluster.tar.gz",
96-
"sudo ./embedded-cluster join 172.17.0.2:30000 1234aBcD"
97-
]
98-
}
99-
```
10087

10188
1. On the node that you want to join as a controller, run each of the commands provided in the `join print-command` output to download the Embedded Cluster binary, extract the binary, and join the node to the cluster.
10289

0 commit comments

Comments
 (0)