From 2abafb56992da7224136e313e42c0050d0a0a924 Mon Sep 17 00:00:00 2001 From: Paul Payne Date: Sat, 4 Oct 2025 08:26:12 -0700 Subject: [PATCH] Update setup commands. --- content/get-started/poc/operator-setup/index.md | 4 ++-- content/get-started/poc/setup-wild-cloud/index.md | 15 ++++++--------- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/content/get-started/poc/operator-setup/index.md b/content/get-started/poc/operator-setup/index.md index 28bc3de..b1be4a7 100644 --- a/content/get-started/poc/operator-setup/index.md +++ b/content/get-started/poc/operator-setup/index.md @@ -34,7 +34,7 @@ export PATH=$PATH:~/wild-cloud/bin Install dependencies: ```bash -scripts/setup-utils.sh +scripts/install-wild-cloud-dependencies.sh ``` ## 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 mkdir -p ~/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. diff --git a/content/get-started/poc/setup-wild-cloud/index.md b/content/get-started/poc/setup-wild-cloud/index.md index 131155b..1357da7 100644 --- a/content/get-started/poc/setup-wild-cloud/index.md +++ b/content/get-started/poc/setup-wild-cloud/index.md @@ -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: ```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 ``` -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-metal-amd64.iso`. +The custom ISO includes system extensions needed for a wild cloud cluster and is saved to `.wildcloud/node-boot-assets//iso/talos-v-metal-amd64.iso`. ### 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! -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 @@ -107,7 +104,7 @@ wild-setup-services When the setup is finished, you can test your installation with: ```bash -wild-status +wild-health ``` ## Next Steps