GitHub
github.com › kwehen › LonghornTalos
GitHub - kwehen/LonghornTalos: Installing Longhorn on Talos Linux · GitHub
Installing Longhorn on Talos Linux. Contribute to kwehen/LonghornTalos development by creating an account on GitHub.
Author kwehen
Sidero Documentation
docs.siderolabs.com › kubernetes-guides › csi › storage
Storage - Sidero Documentation - What is Talos Linux?
1 month ago - The following projects are known ... latency and high-performance workloads. Longhorn: Simple, reliable, easy-to-use Kubernetes storage with easy replication and snapshots....
Videos
19:22
Building a Kubernetes Cluster with Talos on Hetzner bare metal ...
02:41:48
Kubernetes & Home Lab - Longhorn Storage / Pi-hole - YouTube
36:50
Storage and Backup in Kubernetes! // Longhorn Tutorial - YouTube
01:12:01
Talos Linux on Nutanix - YouTube
Talos Linux: A Quick Installation and Configuration Guide
01:30:09
Talos Linux on Proxmox - YouTube
OneUptime
oneuptime.com › home › blog › how to set up longhorn storage on talos linux
How to Set Up Longhorn Storage on Talos Linux
March 3, 2026 - See the official Talos docs on system extensions and the Image Factory for background. Submit a schematic describing the extensions you want: cat > longhorn-schematic.yaml << 'EOF' customization: systemExtensions: officialExtensions: - siderolabs/iscsi-tools - siderolabs/util-linux-tools EOF SCHEMATIC_ID=$(curl -sX POST \ --data-binary @longhorn-schematic.yaml \ https://factory.talos.dev/schematics \ -H "Content-Type: application/yaml" | jq -r '.id') # Installer image for machine configs and upgrades echo "factory.talos.dev/installer/${SCHEMATIC_ID}:v1.9.0" # Boot assets (ISO, PXE, disk images) are available under the same schematic ID # https://factory.talos.dev/image/${SCHEMATIC_ID}/v1.9.0/metal-amd64.iso
Phin3has
phin3has.blog › posts › talos-longhorn
Phin3has Tech Blog - Installing Longhorn on Talos Linux: A Step-by-Step Guide
January 28, 2025 - Longhorn provides cloud-native distributed block storage for Kubernetes. This guide walks through setting up Longhorn on a Talos Linux cluster, addressing common pitfalls and requirements.
HackMD
hackmd.io › @QI-AN › Install-Longhorn-on-Talos-Kubernetes
Install Longhorn on Talos Kubernetes - HackMD
March 7, 2024 - ## create the schematic file $ cat <<EOF > longhorn.yaml customization: systemExtensions: officialExtensions: - siderolabs/iscsi-tools - siderolabs/util-linux-tools - siderolabs/gvisor - siderolabs/qemu-guest-agent EOF ## 到 Talos 官網的 Image Factory 查詢包含指定套件的 Image ID: $ curl -X POST --data-binary @longhorn.yaml https://factory.talos.dev/schematics {"id":"c527b6b20fb22847304656677e9bd4c4055dfcce95f3385da5db80e35f5fa1dc"} ``` > Image Factory is a service that generates Talos boot assets on-demand.
Longhorn
longhorn.io › docs › 1.12.0 › deploy › install
Longhorn | Quick Installation
In Longhorn system, backup feature requires NFSv4, v4.1 or v4.2, and ReadWriteMany (RWX) volume feature requires NFSv4.1. Before installing NFSv4 client userspace daemon and utilities, make sure the client kernel support is enabled on each Longhorn node. ... The command used to install a NFSv4 client differs depending on the Linux distribution. ... For Talos Linux, the NFS client is part of the kubelet image maintained by the Talos team.
YouTube
youtube.com › watch
Installing Longhorn on Talos Linux - YouTube
A step-by-step installation of Longhorn storage on Talos Linux. All commands in this video can be found here: https://khenry.substack.com/p/longhorn-on-talos...
Published June 21, 2024
GitHub
github.com › siderolabs › talos › issues › 12064
Improve Documentation for Longhorn and System Extensions Installation · Issue #12064 · siderolabs/talos
October 22, 2025 - After installing Longhorn, I was disappointed to find that Talos lacked the required iSCSI modules. This is obviously not a problem with Talos itself. The system requirements for Longhorn are documented on the official Longhorn page: Lon...
Author siderolabs
Xelon
xelon.ch › en › docs › storage-solution-longhorn
Storage Solution: Longhorn
Enable the "Storage Pool" option: In Xelon HQ, activate the "Storage Pool" option to attach an additional disk to each node. This disk will be used by Longhorn to store data separately from the main boot disk. The Talos Linux boot partition is immutable and will be overwritten during any base ...
GitHub
github.com › joshrnoll › talos-scripts
GitHub - joshrnoll/talos-scripts: A collection of scripts for creating and managing kubernetes clusters on talos linux · GitHub
talosctl apply-config -f worker.yaml --insecure -n <node-ip> You can install Longhorn with the following: Apply the necessary Longhorn mounts (run this command on each node): talosctl patch machineconfig -p @longhorn-mounts.yaml -n <node-ip> Create longhorn namespace and add pod security labels: kubectl create ns longhorn-system && kubectl label namespace longhorn-system pod-security.kubernetes.io/enforce=privileged ·
Author joshrnoll