-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: enable FUSION_SPI driver #871
Conversation
It seems to be used by VMWare when virtualizing storage device as a SCSI disk. Investigation by James Ringer from the community Slack. ``` udevadm info -a -n /dev/sda | grep -oP 'DRIVERS?=="\K[^"]+' sd mptspi ``` Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
Note: when backporting to 1.6.x, make it |
New module:
|
is this just to avoid updateing |
no, Talos 1.6 doesn't have it as modules (storage stuff). |
/m |
See siderolabs/pkgs#871 This should fix issues with VMWare SCSI disk virtualization. Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
I confirmed that the disks are available after changing the storage controller from SCSI to SATA as was suggested in Slack. I suspect the SATA controller is less performant so that's probably not ideal, but atleast we have a workaround until we can test this fix. For reference we have a few options under SCSI controller for SCSI bus sharing and the kubeadm node I checked was configured to use
|
I tested v1.6.3 ISO on my end with SCSI controller and LSI Logic Parallel bus sharing option and confirmed the fix works as expected! |
if you have Talos already installed iso would just boot that |
It seems to be used by VMWare when virtualizing storage device as a SCSI disk.
Investigation by James Ringer from the community Slack.