You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/enterprise/embedded-manage-nodes.mdx
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ Multi-node clusters with Embedded Cluster have the following limitations:
18
18
19
19
* Setting node roles with the Embedded Cluster Config [roles](/reference/embedded-config#roles) key is Beta.
20
20
21
-
* The `get join-command` command always returns the commands for joining a node with the controller role. It does not support printing the join command for any custom node roles defined in the Embedded Cluster Config `roles` key. See [Automate Controller Node Joins (Beta)](#automate-node-joins) below.
21
+
* The `join print-command` command always returns the commands for joining a node with the controller role. It does not support printing the join command for any custom node roles defined in the Embedded Cluster Config `roles` key. See [Automate Controller Node Joins (Beta)](#automate-node-joins) below.
22
22
23
23
## Add Nodes to a Cluster (Beta) {#add-nodes}
24
24
@@ -52,7 +52,7 @@ To add a node to a cluster with Embedded Cluster in online (internet-connected)
52
52
53
53
1. SSH onto the node that you want to join.
54
54
55
-
1. Copy the curl command provided in the Admin Console to download the Embedded Cluster binary and then run it on the node you want to join.
55
+
1. Copy the curl command provided in the Admin Console to download the Embedded Cluster binary and then run it on the node you want to join. In air gap installations,
56
56
57
57
1. Copy and run the tar command to extract the Embedded Cluster binary.
58
58
@@ -107,7 +107,7 @@ To automate controller node joins with Embedded Cluster:
107
107
1. On a node that is already joined to the cluster, run the following command:
108
108
109
109
```bash
110
-
sudo ./APP_SLUG get join-command
110
+
sudo ./APP_SLUG join print-command
111
111
```
112
112
Where `APP_SLUG` is the unique application slug.
113
113
@@ -116,7 +116,7 @@ To automate controller node joins with Embedded Cluster:
@@ -125,7 +125,7 @@ To automate controller node joins with Embedded Cluster:
125
125
**Example with JSON output:**
126
126
127
127
```
128
-
sudo ./your-app-slug get join-command -ojson
128
+
sudo ./your-app-slug join print-command -ojson
129
129
130
130
{
131
131
"commands": [
@@ -136,7 +136,7 @@ To automate controller node joins with Embedded Cluster:
136
136
}
137
137
```
138
138
139
-
1. On the node that you want to join as a controller, run each of the commands provided in the `get join-command` output to download the Embedded Cluster binary, extract the binary, and join the node to the cluster.
139
+
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.
140
140
141
141
## High Availability for Multi-Node Clusters (Alpha) {#ha}
142
142
@@ -185,7 +185,7 @@ To create a multi-node HA cluster:
185
185
1. Get the commands for downloading the Embedded Cluster binary, extracting the binary, and joining the third controller node either in the Admin Console **Cluster Management** tab or by running the following command on an existing node:
0 commit comments