Try Omni out in ~5 minutes locally
Try Omni out in ~5 minutes locally
Want to evaluate Omni without provisioning real machines? On macOS or Linux you can boot throwaway VMs locally with QEMU and register them with your Omni instance.You’ll need Boot temporary VMs that auto-register with Omni as available machines:After a minute or two, the VMs appear under Machines in your Omni dashboard as available machines, they aren’t a cluster yet. Continue to Step 3: Create cluster to build a cluster from them.Tear down when you’re done:
This is a local trial path for evaluation only. For bare metal, cloud, or edge deployments, see the rest of this guide.
talosctl 1.12+ and omnictl installed:Prerequisites
You must have the following to create a cluster with Omni:-
Network access: Your machines must have outbound internet access and be able to reach the WireGuard endpoint shown on your Omni Home panel.
This endpoint lists an IP address and port (e.g.,
199.99.99.100:10001) that nodes connect to. Machines need to reach that address over:- UDP on the specified port (for WireGuard)
- TCP on port
443(for Omni communication)
- Virtual or physical machines: You can use any virtualization platform that supports booting from an ISO image, for example, UTM, Proxmox, or VMware Fusion. Alternatively, you can deploy on cloud platforms or physical hardware. Bare metal systems can boot using a CD, USB drive, virtual media, or PXE.
-
CLI tools: To work effectively with Omni, you’ll need the CLI tools
omnictl,talosctl, andkubelogin. Downloadtalosctl,kubectl,kubectl-oidc-login, andomnictlfor macOS and Linux systems by running this command:For manual and Windows installation, refer to the alternate installation methods in the Talos documentation. -
talosconfigandomniconfigfiles: Download thetalosconfigandomniconfigconfiguration files from your Omni dashboard. These files let you manage your Talos nodes and connect to Omni from your local environment. Alternatively, you can download the
talosconfigfile from the CLI by running the following command. Replace the<cluster-name>placeholder with your cluster’s name:Once you’ve set up these prerequisites, you can move on to creating your cluster with Omni.
Step 1: Download installation media
Omni is a Bring Your Own Machine platform. You only need to boot a machine from a Talos Omni image configured to connect to your Omni instance. You can download the Talos Omni image using either the CLI or the Omni UI:- CLI
- Omni UI
Run the following command to download a Talos Omni ISO image:To see additional options such as targeting different machines or adding extensions and customizations, run:
Step 2: Boot your machines
Boot each machine you want to add to the cluster using the Omni image you downloaded in Step 1. After the machines have booted, they’ll appear in the Machines section. Depending on your environment, you can use the following methods:If your environment is not listed here, see the Register machines with Omni documentation for more details
- Local (QEMU / UTM)
- AWS EC2
- PXE Boot
To create temporary VMs on your local system (requires Talosctl v1.12+):This command boots virtual machines locally and connects them to your Omni instance.
Step 3: Create cluster
Now that your machines are visible in Omni, you can create your cluster either via the UI or cluster templates. Refer to the create a cluster documentation for information on how to create a cluster template. To create a cluster via the Omni UI by following these steps:-
In the Omni sidebar, go to Clusters → Create Cluster.

-
Enter a cluster name and select the Talos Linux and Kubernetes versions.

- (Optional) Add configuration patches. See Create a Patch for Cluster Machines to learn how to create and apply patches.
- Under the Available Machines section, select at least one machine as a control plane by clicking CP.
For high availability, use an odd number of control plane nodes. We suggest using 3 nodes.

-
Select one or more worker machines by clicking W0, W1, etc.

- Click Create Cluster.
Step 4: Download the kubeconfig file
To make omnictl, talosctl, and kubectl automatically detect your cluster configuration:
- Export your cluster name in a variable, replacing the
<cluster-name>variable with your name of the cluster:
- Merge each configuration file into its default location:
Step 5: Access your Kubernetes cluster
Once your cluster is created, you can confirm that your nodes are registered in Kubernetes by running:The first time you run
kubectl, a browser window will open prompting you to sign in with your identity provider (Google or GitHub).If you see the error error: unknown command "oidc-login", ensure you’ve installed the kubectl-oidc-login plugin as described in the prerequisites section.Step 6: Deploy your first workload
To run your first application on the cluster:- Deploy a sample application:
- Verify that the pods and services are running:
- Forward the service port to your local machine:
- To view the application, open http://localhost:8080 in your browser or run:
