> ## Documentation Index
> Fetch the complete documentation index at: https://docs.siderolabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Support Matrix

> Table of supported Talos Linux versions and respective platforms.

export const VersionWarningBanner = () => {
  const latestVersion = "v1.13";
  const [latestUrl, setLatestUrl] = useState(null);
  const [currentVersion, setCurrentVersion] = useState(null);
  const [isBeta, setIsBeta] = useState(false);
  const parseVersion = v => v.replace("v", "").split(".").map(Number);
  const isGreaterVersion = (a, b) => {
    const [aMajor, aMinor] = parseVersion(a);
    const [bMajor, bMinor] = parseVersion(b);
    if (aMajor > bMajor) return true;
    if (aMajor === bMajor && aMinor > bMinor) return true;
    return false;
  };
  useEffect(() => {
    if (typeof window === "undefined") return;
    const {pathname, hash, search} = window.location;
    const match = pathname.match(/\/talos\/(v\d+\.\d+)\//);
    if (!match) return;
    const detectedVersion = match[1];
    if (detectedVersion === latestVersion) return;
    setCurrentVersion(detectedVersion);
    if (isGreaterVersion(detectedVersion, latestVersion)) {
      setIsBeta(true);
    }
    const newPath = pathname.replace(`/talos/${detectedVersion}/`, `/talos/${latestVersion}/`);
    setLatestUrl(`${newPath}${search}${hash}`);
  }, []);
  if (!latestUrl || !currentVersion) return null;
  return <div className="not-prose sticky top-6 z-50 my-6">
      <div className="border border-yellow-500/30 bg-yellow-500/10 px-4 py-3 rounded-xl">
        <div className="text-sm">
          {isBeta ? <>
              ⚠️ You are viewing a <strong>beta version</strong> of Talos ({currentVersion}).
              This version may be unstable.
              <a href={latestUrl} className="ml-2 underline text-yellow-400 hover:text-yellow-300 font-medium">
                View latest stable version {latestVersion} →
              </a>
            </> : <>
              ⚠️ You are viewing an older version of Talos ({currentVersion}).
              <a href={latestUrl} className="ml-2 underline text-yellow-400 hover:text-yellow-300 font-medium">
                View the latest version {latestVersion} →
              </a>
            </>}
        </div>
      </div>
    </div>;
};

<VersionWarningBanner />

| Talos Version                                                                                               | 1.13                                                                                                                                                                                                                     | 1.12                                                                                                                                                                                                                     |
| ----------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Release Date                                                                                                | 2026-04-27 (TBD)                                                                                                                                                                                                         | 2025-12-22 (1.12.0)                                                                                                                                                                                                      |
| End of Community Support                                                                                    | 1.14.0 release (2026-08-30, TBD)                                                                                                                                                                                         | 1.13.0 release (2026-04-27, TBD)                                                                                                                                                                                         |
| Enterprise Support                                                                                          | [offered by Sidero Labs Inc.](https://www.siderolabs.com/support/)                                                                                                                                                       | [offered by Sidero Labs Inc.](https://www.siderolabs.com/support/)                                                                                                                                                       |
| Kubernetes                                                                                                  | 1.36, 1.35, 1.34, 1.33, 1.32, 1.31                                                                                                                                                                                       | 1.35, 1.34, 1.33, 1.32, 1.31, 1.30                                                                                                                                                                                       |
| NVIDIA Drivers                                                                                              | 595.x.x (PRODUCTION), 580.x.x (LTS)                                                                                                                                                                                      | 570.x.x (PRODUCTION), 580.x.x (LTS)                                                                                                                                                                                      |
| Architecture                                                                                                | amd64, arm64                                                                                                                                                                                                             | amd64, arm64                                                                                                                                                                                                             |
| **Platforms**                                                                                               |                                                                                                                                                                                                                          |                                                                                                                                                                                                                          |
| - cloud                                                                                                     | Akamai, AWS, GCP, Azure, CloudStack, Digital Ocean, Exoscale, Hetzner, OpenNebula, OpenStack, Oracle Cloud, Scaleway, Vultr, Upcloud                                                                                     | Akamai, AWS, GCP, Azure, CloudStack, Digital Ocean, Exoscale, Hetzner, OpenNebula, OpenStack, Oracle Cloud, Scaleway, Vultr, Upcloud                                                                                     |
| - bare metal                                                                                                | x86: BIOS, UEFI, SecureBoot; arm64: UEFI, SecureBoot; boot: ISO, PXE, disk image                                                                                                                                         | x86: BIOS, UEFI; arm64: UEFI; boot: ISO, PXE, disk image                                                                                                                                                                 |
| - virtualized                                                                                               | VMware, Hyper-V, KVM, Proxmox, Xen                                                                                                                                                                                       | VMware, Hyper-V, KVM, Proxmox, Xen                                                                                                                                                                                       |
| - SBCs                                                                                                      | Banana Pi M64, Jetson Nano, Libre Computer Board ALL-H3-CC, Nano Pi R4S, Pine64, Pine64 Rock64, Radxa ROCK Pi 4C, Radxa ROCK 4C+, Radxa ROCK 5B, Raspberry Pi 4B, Raspberry Pi Compute Module 4, Turing RK1, Orange Pi 5 | Banana Pi M64, Jetson Nano, Libre Computer Board ALL-H3-CC, Nano Pi R4S, Pine64, Pine64 Rock64, Radxa ROCK Pi 4C, Radxa ROCK 4C+, Radxa ROCK 5B, Raspberry Pi 4B, Raspberry Pi Compute Module 4, Turing RK1, Orange Pi 5 |
| - local                                                                                                     | Docker, QEMU                                                                                                                                                                                                             | Docker, QEMU                                                                                                                                                                                                             |
| **Omni**                                                                                                    |                                                                                                                                                                                                                          |                                                                                                                                                                                                                          |
| [Omni](https://github.com/siderolabs/omni)                                                                  | >= 1.8.0                                                                                                                                                                                                                 | >= 1.4.0                                                                                                                                                                                                                 |
| **Cluster API**                                                                                             |                                                                                                                                                                                                                          |                                                                                                                                                                                                                          |
| [CAPI Bootstrap Provider Talos](https://github.com/siderolabs/cluster-api-bootstrap-provider-talos)         | >= 0.6.12                                                                                                                                                                                                                | >= 0.6.11                                                                                                                                                                                                                |
| [CAPI Control Plane Provider Talos](https://github.com/siderolabs/cluster-api-control-plane-provider-talos) | >= 0.5.13                                                                                                                                                                                                                | >= 0.5.12                                                                                                                                                                                                                |
| [Sidero](https://www.sidero.dev/)                                                                           | >= 0.6.13                                                                                                                                                                                                                | >= 0.6.12                                                                                                                                                                                                                |

## Platform tiers

* Tier 1: Automated tests, high-priority fixes.
* Tier 2: Tested from time to time, medium-priority bugfixes.
* Tier 3: Not tested by core Talos team, community tested.

### Tier 1

* Metal
* AWS
* GCP

### Tier 2

* Azure
* Digital Ocean
* OpenStack
* VMWare

### Tier 3

* Akamai
* CloudStack
* Exoscale
* Hetzner
* nocloud
* OpenNebula
* Oracle Cloud
* Scaleway
* Vultr
* Upcloud
