From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [IPv6:2a0f:8001:1:32::40]) by lore.proxmox.com (Postfix) with ESMTPS id 0AB0C1FF0ED for ; Fri, 31 Jul 2026 12:24:50 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 717F421802; Fri, 31 Jul 2026 12:22:10 +0200 (CEST) From: Dietmar Maurer To: pve-devel@lists.proxmox.com Subject: [RFC pve-manager 25/27] api: nodes: add iSCSI initiator API endpoint Date: Fri, 31 Jul 2026 12:21:54 +0200 Message-ID: <20260731102156.3947857-26-dietmar@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260731102156.3947857-1-dietmar@proxmox.com> References: <20260731102156.3947857-1-dietmar@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 2 AWL -0.260 Adjusted score from AWL reputation of From: address DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment (newer systems) KAM_LAZY_DOMAIN_SECURITY 1 Sending domain does not have any anti-forgery methods POISEN_SPAM_PILL_3 0.1 random spam to be learned in bayes RDNS_NONE 1.274 Delivered to internal network by a host with no rDNS SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_NONE 0.001 SPF: sender does not publish an SPF Record Message-ID-Hash: PW2XQYTGVU6IHXONXII46NAASZZUQAZT X-Message-ID-Hash: PW2XQYTGVU6IHXONXII46NAASZZUQAZT X-MailFrom: dietmar@zilli.proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Mount the node-level iSCSI initiator API from libpve-storage-perl at /nodes/{node}/iscsi, next to the other storage-backed node endpoints. Signed-off-by: Dietmar Maurer --- PVE/API2/Nodes.pm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/PVE/API2/Nodes.pm b/PVE/API2/Nodes.pm index 2ca3244d..e27a5f13 100644 --- a/PVE/API2/Nodes.pm +++ b/PVE/API2/Nodes.pm @@ -49,6 +49,7 @@ use PVE::API2::Certificates; use PVE::API2::Disks; use PVE::API2::Firewall::Host; use PVE::API2::Hardware; +use PVE::API2::ISCSI; use PVE::API2::LXC::Status; use PVE::API2::LXC; use PVE::API2::Network; @@ -159,6 +160,11 @@ __PACKAGE__->register_method({ path => 'hardware', }); +__PACKAGE__->register_method({ + subclass => "PVE::API2::ISCSI", + path => 'iscsi', +}); + __PACKAGE__->register_method({ subclass => "PVE::API2::Capabilities", path => 'capabilities', @@ -239,6 +245,7 @@ __PACKAGE__->register_method({ { name => 'firewall' }, { name => 'hardware' }, { name => 'hosts' }, + { name => 'iscsi' }, { name => 'journal' }, { name => 'lxc' }, { name => 'migrateall' }, -- 2.47.3