From c136eb76c774a12aec382c5ad7bee449c97fb681 Mon Sep 17 00:00:00 2001 From: Fiona Ebner Date: Wed, 2 Jul 2025 18:27:39 +0200 Subject: [PATCH] iscsi direct plugin: implement method to get qemu blockdevice options Signed-off-by: Fiona Ebner --- src/PVE/Storage/ISCSIDirectPlugin.pm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/PVE/Storage/ISCSIDirectPlugin.pm b/src/PVE/Storage/ISCSIDirectPlugin.pm index 9b7f77c..8c6b4ab 100644 --- a/src/PVE/Storage/ISCSIDirectPlugin.pm +++ b/src/PVE/Storage/ISCSIDirectPlugin.pm @@ -110,6 +110,20 @@ sub path { return ($path, $vmid, $vtype); } +sub qemu_blockdev_options { + my ($class, $scfg, $storeid, $volname) = @_; + + my $lun = ($class->parse_volname($volname))[1]; + + return { + driver => 'iscsi', + transport => 'tcp', + portal => "$scfg->{portal}", + target => "$scfg->{target}", + lun => int($lun), + }; +} + sub create_base { my ($class, $storeid, $scfg, $volname) = @_;