How to allocate unused disk space to Kubernetes storage #10335
-
Hi folks, Based on the Storage section of the Talos documentation (link):
I have a few questions regarding this: 1. Understanding Talos disk usageFor example, if the "Disk" size is 512GiB, and i set the 2. Partitioning unused spaceI also heard that we can still create a partition on the unused space and allocate it to K8s Storage solution like Mayastor, which sounds contradictory to what docs says? How does this work in practice? 3. Missing partition in discovered volumesWhen I set 30Gib for
to all my nodes with the same storage hardware, each with 2 x 512G nvme SSD. Here is one of them:
Why I don't see the 4. Allocating unused disk space to Kubernetes storageIf I am using K8s storage(not 5. Best approach for partition of file system and Kubernetes storageI know that if I want to read/write directly to the filesystem, I must create partitions and set mount points. Based on this: Sorry for a lot of questions, thank you in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
yes
The full support for user volumes hasn't come yet (it is expected in Talos 1.10). Some people partition the rest of the disk manually/using other means besides Talos.
This section is a question about legacy way which doesn't work quite well. Short version - you need to pick an empty disk if you want to use it right now (nvme1n1).
It depends on what you're looking for, you can perfect use Some storages (e.g. Ceph) can allocate unused disks on their own.
Yes, in general that is correct, but details depend on specifics. |
Beta Was this translation helpful? Give feedback.
yes
The full support for user volumes hasn't come yet (it is expected in Talos 1.10).
Some people partition the rest of the disk manually/using other means besides Talos.
This section is a question about le…