Update setup commands.

This commit is contained in:
2025-10-04 08:26:12 -07:00
parent 88639ab7aa
commit 2abafb5699
2 changed files with 8 additions and 11 deletions

View File

@@ -34,7 +34,7 @@ export PATH=$PATH:~/wild-cloud/bin
Install dependencies: Install dependencies:
```bash ```bash
scripts/setup-utils.sh scripts/install-wild-cloud-dependencies.sh
``` ```
## Create your Wild Cloud Home ## Create your Wild Cloud Home
@@ -50,7 +50,7 @@ You can put it in any directory. Here we show an example if you want to make a d
```bash ```bash
mkdir -p ~/my-wild-cloud mkdir -p ~/my-wild-cloud
cd ~/my-wild-cloud cd ~/my-wild-cloud
wild-cloud-scaffold wild-init
``` ```
That's it! Your wild cloud operator machine is ready to go! Most of the rest of the instructions in this guide will assume you are working within this directory. That's it! Your wild cloud operator machine is ready to go! Most of the rest of the instructions in this guide will assume you are working within this directory.

View File

@@ -17,16 +17,12 @@ You will be using a USB key to boot each of your cluster machines. Let's create
From your wild cloud home, run: From your wild cloud home, run:
```bash ```bash
# Upload schematic configuration to get schematic ID from the Talos ISO service.
wild-talos-schema
# Download custom ISO with system extensions.
wild-cluster-node-boot-assets-download wild-cluster-node-boot-assets-download
``` ```
This will download all the Talos ISOs for your wild cloud configuration. This will download a Talos ISO you can use to create a USB drive.
The custom ISO includes system extensions needed for a wild cloud cluster and is saved to `.wildcloud/iso/talos-v<VERSION>-metal-amd64.iso`. The custom ISO includes system extensions needed for a wild cloud cluster and is saved to `.wildcloud/node-boot-assets/<schematicId>/iso/talos-v<VERSION>-metal-amd64.iso`.
### Copy ISO to a USB drive ### Copy ISO to a USB drive
@@ -45,8 +41,9 @@ sync
**⚠️ Warning**: Double-check the device path (`/dev/sdX`). Writing to the wrong device will destroy data! **⚠️ Warning**: Double-check the device path (`/dev/sdX`). Writing to the wrong device will destroy data!
TO DO: Look into some utilities (Balena Etcher, Rufus, etc.) to make this simpler/safer. {{< go-deeper >}}
Note: Balena Etcher can also be used to create a bootable USB drive from the ISO.
{{< /go-deeper >}}
## How to install Talos OS on a machine ## How to install Talos OS on a machine
@@ -107,7 +104,7 @@ wild-setup-services
When the setup is finished, you can test your installation with: When the setup is finished, you can test your installation with:
```bash ```bash
wild-status wild-health
``` ```
## Next Steps ## Next Steps