-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
longhorn-3161 Signed-off-by: Chin-Ya Huang <chin-ya.huang@suse.com>
- Loading branch information
Showing
3 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
49 changes: 49 additions & 0 deletions
49
content/docs/1.6.0/advanced-resources/os-distro-specific/talos-linux-support.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
title: Talos Linux Support | ||
weight: 5 | ||
--- | ||
|
||
Before Longhorn installation on a Talos Linux cluster, specific configurations are required. | ||
|
||
- [Installation Of System Extensions](#installation-of-system-extensions) | ||
- [Data Path Mounts](#data-path-mounts) | ||
- [References](#references) | ||
|
||
## Installation Of System Extensions | ||
|
||
Longhorn depends on `siderolabs/iscsi-tools` and `siderolabs/util-linux-tools` system extensions, which need to be installed before installing Longhorn. | ||
|
||
The most straightforward way is patching these system extensions into existing Talos Linux nodes. | ||
|
||
```yaml | ||
customization: | ||
systemExtensions: | ||
officialExtensions: | ||
- siderolabs/iscsi-tools | ||
- siderolabs/util-linux-tools | ||
``` | ||
For detailed instructions, see Talos' documentation on [System Extensions](https://www.talos.dev/v1.6/talos-guides/configuration/system-extensions/) and [Boot Assets](https://www.talos.dev/v1.6/talos-guides/install/boot-assets/). | ||
## Data Path Mounts | ||
Longhorn requires to mount the datapath to the kubelete container. | ||
```yaml | ||
machine: | ||
kubelet: | ||
extraMounts: | ||
- destination: /var/lib/longhorn | ||
type: bind | ||
source: /var/lib/longhorn | ||
options: | ||
- bind | ||
- rshared | ||
- rw | ||
``` | ||
For detailed instructions, see Talos' documentation on [Editing Machine Configuration](https://www.talos.dev/v1.6/talos-guides/configuration/editing-machine-configuration/). | ||
## References | ||
- [[FEATURE] Talos support](https://github.com/longhorn/longhorn/issues/3161) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters