-
|
I have a bare metal machine on which I want to install talos (single node learning cluster). apiVersion: v1alpha1
kind: UserVolumeConfig
name: local-path-provisioner
volumeType: disk
provisioning:
diskSelector:
match: disk.transport == 'nvme'
I do not understand why the Volume is in a failed state. I mean it seems like there is no partition created on my second drive. But the question is why? I thought the new apiVersion: v1alpha1
kind: UserVolumeConfig
name: local-path-provisioner
provisioning:
diskSelector:
match: disk.transport == 'nvme'
minSize: 10 GiB
grow: trueRunning the installation with this config does just work. (: So bottom line: The two provided yamls: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
You can see the actual error in the If you have two disks, make sure that the disk selector matches exactly the one you want. Use |
Beta Was this translation helpful? Give feedback.
Thanks for the response!
I managed to solve it by deleting everything from that disk, including the partition table, by using
sudo wipefs -a /dev/nvme0n1.