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/docs-content/tutorials/edge/deploy-cluster.md
+12-13Lines changed: 12 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,8 +61,6 @@ To complete this tutorial, you will need the following:
61
61
uname -m
62
62
```
63
63
64
-
<br />
65
-
66
64
:::warning
67
65
68
66
The Linux machine must have network connectivity to your VMware vCenter environment.
@@ -198,13 +196,7 @@ placeholder with your actual registration token.
198
196
export token=[your_token_here]
199
197
```
200
198
201
-
Use the following command to create the **user-data** file containing the tenant registration token. You can click on
202
-
the _Points of Interest_ numbers below to learn more about the main attributes relevant to this example.
203
-
204
-
<PointsOfInterest points={[
205
-
{ x: 250, y: 160, label: 1, description: "Stores the registration token and lets the agent use the auto-registration functionality and authenticate with the provided token.", tooltipPlacement: "rightTop", },
206
-
{ x: 600, y: 300, label: 2, description: "Sets the login credentials for Edge hosts. The login credentials allow you to SSH log in to the edge host for debugging purposes.", tooltipPlacement: "rightTop", }
207
-
]}>
199
+
Use the following command to create the **user-data** file containing the tenant registration token.
208
200
209
201
```shell
210
202
cat <<EOF > user-data
@@ -217,12 +209,21 @@ stylus:
217
209
users:
218
210
- name: kairos
219
211
passwd: kairos
212
+
213
+
install:
214
+
poweroff: true
220
215
EOF
221
216
```
222
217
223
-
</PointsOfInterest>
218
+
:::warning
219
+
220
+
Ensure that you include the `install.poweroff.true` parameter. This ensures that the Edge host will power off after
221
+
installation. If you do not include this parameter, this could lead to a VM you will use in a subsequent step to refuse
222
+
to power off automatically and cause a timeout error unless you manually shut down the VM.
223
+
224
+
:::
224
225
225
-
Review the newly created user data file. <br />
226
+
Review the newly created user data file.
226
227
227
228
```bash
228
229
cat user-data
@@ -244,8 +245,6 @@ users:
244
245
passwd: kairos
245
246
```
246
247
247
-
<br />
248
-
249
248
## Build Artifacts
250
249
251
250
The CanvOS utility uses [Earthly](https://earthly.dev/) to build the target artifacts. Issue the following command to
0 commit comments