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 761391FF0ED for ; Fri, 31 Jul 2026 17:36:43 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 91185215BC; Fri, 31 Jul 2026 17:36:38 +0200 (CEST) From: Jakob Klocker To: pve-devel@lists.proxmox.com Subject: [PATCH pve-storage 2/9] storage: add `plugin-url` to built-in plugins Date: Fri, 31 Jul 2026 17:36:10 +0200 Message-ID: <20260731153617.358265-3-j.klocker@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260731153617.358265-1-j.klocker@proxmox.com> References: <20260731153617.358265-1-j.klocker@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 1 AWL -0.598 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 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: LCGM5ZQ6O4PA3WOGVXG6Q563YVY5MO3B X-Message-ID-Hash: LCGM5ZQ6O4PA3WOGVXG6Q563YVY5MO3B X-MailFrom: jklocker@dev.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 CC: Jakob Klocker X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Add documentation URLs for built-in storage plugins so the frontend can link to each plugin's documentation. Signed-off-by: Jakob Klocker --- src/PVE/Storage/BTRFSPlugin.pm | 1 + src/PVE/Storage/CIFSPlugin.pm | 1 + src/PVE/Storage/CephFSPlugin.pm | 1 + src/PVE/Storage/DirPlugin.pm | 1 + src/PVE/Storage/ISCSIDirectPlugin.pm | 1 + src/PVE/Storage/ISCSIPlugin.pm | 1 + src/PVE/Storage/LVMPlugin.pm | 1 + src/PVE/Storage/LvmThinPlugin.pm | 1 + src/PVE/Storage/NFSPlugin.pm | 1 + src/PVE/Storage/PBSPlugin.pm | 1 + src/PVE/Storage/RBDPlugin.pm | 1 + src/PVE/Storage/ZFSPlugin.pm | 1 + src/PVE/Storage/ZFSPoolPlugin.pm | 1 + 13 files changed, 13 insertions(+) diff --git a/src/PVE/Storage/BTRFSPlugin.pm b/src/PVE/Storage/BTRFSPlugin.pm index fb47aa0..cb1b03e 100644 --- a/src/PVE/Storage/BTRFSPlugin.pm +++ b/src/PVE/Storage/BTRFSPlugin.pm @@ -46,6 +46,7 @@ sub plugindata { ], format => [{ raw => 1, subvol => 1 }, 'raw'], 'sensitive-properties' => {}, + 'plugin-url' => "https://pve.proxmox.com/wiki/Storage:_BTRFS", }; } diff --git a/src/PVE/Storage/CIFSPlugin.pm b/src/PVE/Storage/CIFSPlugin.pm index 54f0f4e..423afc9 100644 --- a/src/PVE/Storage/CIFSPlugin.pm +++ b/src/PVE/Storage/CIFSPlugin.pm @@ -126,6 +126,7 @@ sub plugindata { ], format => [{ raw => 1, qcow2 => 1, vmdk => 1 }, 'raw'], 'sensitive-properties' => { password => 1 }, + 'plugin-url' => "https://pve.proxmox.com/wiki/Storage:_CIFS", }; } diff --git a/src/PVE/Storage/CephFSPlugin.pm b/src/PVE/Storage/CephFSPlugin.pm index fbc9711..ab3c45f 100644 --- a/src/PVE/Storage/CephFSPlugin.pm +++ b/src/PVE/Storage/CephFSPlugin.pm @@ -119,6 +119,7 @@ sub plugindata { content => [{ vztmpl => 1, iso => 1, backup => 1, snippets => 1, import => 1 }, { backup => 1 }], 'sensitive-properties' => { keyring => 1 }, + 'plugin-url' => "https://pve.proxmox.com/wiki/Storage:_CephFS", }; } diff --git a/src/PVE/Storage/DirPlugin.pm b/src/PVE/Storage/DirPlugin.pm index 80c4a03..0a332ca 100644 --- a/src/PVE/Storage/DirPlugin.pm +++ b/src/PVE/Storage/DirPlugin.pm @@ -39,6 +39,7 @@ sub plugindata { ], format => [{ raw => 1, qcow2 => 1, vmdk => 1, subvol => 1 }, 'raw'], 'sensitive-properties' => {}, + 'plugin-url' => "https://pve.proxmox.com/wiki/Storage:_Directory", }; } diff --git a/src/PVE/Storage/ISCSIDirectPlugin.pm b/src/PVE/Storage/ISCSIDirectPlugin.pm index f976c31..e60e000 100644 --- a/src/PVE/Storage/ISCSIDirectPlugin.pm +++ b/src/PVE/Storage/ISCSIDirectPlugin.pm @@ -67,6 +67,7 @@ sub plugindata { content => [{ images => 1, none => 1 }, { images => 1 }], select_existing => 1, 'sensitive-properties' => {}, + 'plugin-url' => "https://pve.proxmox.com/wiki/Storage:_User_Mode_iSCSI", }; } diff --git a/src/PVE/Storage/ISCSIPlugin.pm b/src/PVE/Storage/ISCSIPlugin.pm index 801b5d1..9571ceb 100644 --- a/src/PVE/Storage/ISCSIPlugin.pm +++ b/src/PVE/Storage/ISCSIPlugin.pm @@ -335,6 +335,7 @@ sub plugindata { content => [{ images => 1, none => 1 }, { images => 1 }], select_existing => 1, 'sensitive-properties' => {}, + 'plugin-url' => "https://pve.proxmox.com/wiki/Storage:_iSCSI", }; } diff --git a/src/PVE/Storage/LVMPlugin.pm b/src/PVE/Storage/LVMPlugin.pm index b8646c2..a774246 100644 --- a/src/PVE/Storage/LVMPlugin.pm +++ b/src/PVE/Storage/LVMPlugin.pm @@ -409,6 +409,7 @@ sub plugindata { content => [{ images => 1, rootdir => 1 }, { images => 1 }], format => [{ raw => 1, qcow2 => 1 }, 'raw'], 'sensitive-properties' => {}, + 'plugin-url' => "https://pve.proxmox.com/wiki/Storage:_LVM", }; } diff --git a/src/PVE/Storage/LvmThinPlugin.pm b/src/PVE/Storage/LvmThinPlugin.pm index cadf343..d1337ba 100644 --- a/src/PVE/Storage/LvmThinPlugin.pm +++ b/src/PVE/Storage/LvmThinPlugin.pm @@ -33,6 +33,7 @@ sub plugindata { return { content => [{ images => 1, rootdir => 1 }, { images => 1, rootdir => 1 }], 'sensitive-properties' => {}, + 'plugin-url' => "https://pve.proxmox.com/wiki/Storage:_LVM_Thin", }; } diff --git a/src/PVE/Storage/NFSPlugin.pm b/src/PVE/Storage/NFSPlugin.pm index 4cc02c9..2e046ec 100644 --- a/src/PVE/Storage/NFSPlugin.pm +++ b/src/PVE/Storage/NFSPlugin.pm @@ -67,6 +67,7 @@ sub plugindata { ], format => [{ raw => 1, qcow2 => 1, vmdk => 1 }, 'raw'], 'sensitive-properties' => {}, + 'plugin-url' => "https://pve.proxmox.com/wiki/Storage:_NFS", }; } diff --git a/src/PVE/Storage/PBSPlugin.pm b/src/PVE/Storage/PBSPlugin.pm index 6b049b4..a77d2cd 100644 --- a/src/PVE/Storage/PBSPlugin.pm +++ b/src/PVE/Storage/PBSPlugin.pm @@ -36,6 +36,7 @@ sub plugindata { 'master-pubkey' => 1, password => 1, }, + 'plugin-url' => "https://pve.proxmox.com/wiki/Storage:_Proxmox_Backup_Server", }; } diff --git a/src/PVE/Storage/RBDPlugin.pm b/src/PVE/Storage/RBDPlugin.pm index b537425..818ce4e 100644 --- a/src/PVE/Storage/RBDPlugin.pm +++ b/src/PVE/Storage/RBDPlugin.pm @@ -413,6 +413,7 @@ sub plugindata { return { content => [{ images => 1, rootdir => 1 }, { images => 1 }], 'sensitive-properties' => { keyring => 1 }, + 'plugin-url' => "https://pve.proxmox.com/wiki/Storage:_RBD", }; } diff --git a/src/PVE/Storage/ZFSPlugin.pm b/src/PVE/Storage/ZFSPlugin.pm index 74e0a08..f382e8a 100644 --- a/src/PVE/Storage/ZFSPlugin.pm +++ b/src/PVE/Storage/ZFSPlugin.pm @@ -177,6 +177,7 @@ sub plugindata { return { content => [{ images => 1 }, { images => 1 }], 'sensitive-properties' => {}, + 'plugin-url' => "https://pve.proxmox.com/wiki/Storage:_ZFS_over_ISCSI", }; } diff --git a/src/PVE/Storage/ZFSPoolPlugin.pm b/src/PVE/Storage/ZFSPoolPlugin.pm index 55f0bbc..415140d 100644 --- a/src/PVE/Storage/ZFSPoolPlugin.pm +++ b/src/PVE/Storage/ZFSPoolPlugin.pm @@ -57,6 +57,7 @@ sub plugindata { content => [{ images => 1, rootdir => 1 }, { images => 1, rootdir => 1 }], format => [{ raw => 1, subvol => 1 }, 'raw'], 'sensitive-properties' => {}, + 'plugin-url' => "https://pve.proxmox.com/wiki/Storage:_ZFS", }; } -- 2.47.3