Prepare the Talos Node
This step involves booting the instance into the Talos maintenance environment (which runs entirely in RAM) and identifying the disk that Talos will install itself to.
Boot into the Maintenance Environment
- Open the Console tab for the instance. As the image boots, Talos runs entirely in RAM. The VM will not install anything to disk yet — that only happens once a machine configuration is applied.
- Note the IP address that appears on the console. This is the address of the Talos maintenance environment, which you will use to configure the node.
- On your workstation, store the address in an environment variable for later use:
export CONTROL_PLANE_IP=<IP_ADDRESS_FROM_CONSOLE>
Identify the Installation Disks
Note
At this point, it is recommended to detach the Talos ISO CD-ROM. This prevents Talos from booting into the maintenance environment again after installation. Refer to the Detach Device section to detach the ISO CD-ROM from the instance.
On your workstation, run the following command to list the disks that Talos sees:
talosctl get disks --insecure --nodes $CONTROL_PLANE_IP
The name of the disk you attached in the Download and Deploy Talos ISO step will typically be named vda. Make a note of this disk name, as you will need it when generating the machine configuration in the next step.
Next Steps
Proceed to Generate and Apply Cluster Configuration.