[pve-devel] [PATCH manager v2 2/3] ui: form: file selector: allow optional filter

2025-03-20 Thread Dominik Csapak
this sometimes comes in handy when we only want to show specific files. Signed-off-by: Dominik Csapak --- no changes in v2 www/manager6/form/FileSelector.js | 10 ++ 1 file changed, 10 insertions(+) diff --git a/www/manager6/form/FileSelector.js b/www/manager6/form/FileSelector.js ind

Re: [pve-devel] [PATCH storage v4] fix #957 iscsi: improve iscsi_test_portal logic

2025-03-20 Thread Mira Limbeck
On 3/18/25 17:11, Friedrich Weber wrote: > Hi, thanks for the new version! I think this is shaping up nicely. Some > comments inline below, but only minor ones. So it may make sense to wait > a couple of days for additional comments from others before sending a > new version. I'll also run a few mo

Re: [pve-devel] [!!ACHTUNG extern!!] - Re: [!!ACHTUNG extern!!] - Re: [PATCH pve-network v3 1/3] ipam: nautobot: base plugin

2025-03-20 Thread Lou Lecrivain via pve-devel
--- Begin Message --- Regarding the Accept header,  >> sub default_headers {  >>     my ($plugin_config) = @_;  >>     my $token = $plugin_config->{token};  >>     return [  >>     'Content-Type' => "application/json", 'Authorization' => "token $token",  >>     'Accept' => "application/json"  >> 

Re: [pve-devel] [RFC PATCH manager] WIP: api: implement node-independent bulk actions

2025-03-20 Thread Stefan Hanreich
On 3/19/25 10:04, Dominik Csapak wrote: > On 3/18/25 12:30, Stefan Hanreich wrote: >>> There are alternative methods to achieve similar results: >>> * use some kind of queuing system on the cluster (e.g. via pmxcfs) >>> * using the 'startall'/'stopall' calls from pve in PDM >>> * surely some other

Re: [pve-devel] About PVE Backup Integration Guide

2025-03-20 Thread Prashant Patil via pve-devel
--- Begin Message --- Hello Fiona and Thomas, Could you please assist in resolving the query mentioned below? Thanks Prashant -Original Message- From: Prashant Patil Sent: 18 March 2025 02:29 PM To: Fiona Ebner ; Proxmox VE development discussion ; Thomas Lamprecht Cc: Anuradha Joshi ;

[pve-devel] [PATCH storage v2 1/1] import: allow upload of qcow2 files into import storage

2025-03-20 Thread Dominik Csapak
so users can upload qcow2 files directly in the ui Signed-off-by: Dominik Csapak --- no changes in v2: src/PVE/API2/Storage/Status.pm | 17 - src/PVE/Storage.pm | 2 +- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/src/PVE/API2/Storage/Status.pm b/

[pve-devel] [PATCH manager v2 3/3] ui: qemu hd edit: allow importing a disk from the import storage

2025-03-20 Thread Dominik Csapak
adds a checkbox 'import image' above the storage selector which: * hides the original storage selector * shows a 'source storage' selector * shows a 'import file' selector * shows a 'target storage' selector Since the wizard and the hd edit share this panel, this also works in the wizard. Signed-

[pve-devel] [PATCH manager v2 1/3] ui: storage content: allow upload of qcow2 for import type

2025-03-20 Thread Dominik Csapak
partially fixes #2424 Signed-off-by: Dominik Csapak --- no changes in v2 www/manager6/window/UploadToStorage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/manager6/window/UploadToStorage.js b/www/manager6/window/UploadToStorage.js index cdf548a8..3ce2d1f5 100644 --

Re: [pve-devel] [PATCH storage/manager] allow upload & import of qcow2 in the web UI

2025-03-20 Thread Dominik Csapak
sent a v2: https://lore.proxmox.com/pve-devel/20250320134010.2959253-1-d.csa...@proxmox.com/ ___ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] [PATCH storage v5] fix #957: iscsi: improve iscsi_test_portal logic

2025-03-20 Thread Victor Seva via pve-devel
--- Begin Message --- Check if there is already a logged session present and fall back to previous TCP check port connection. pvestatd is calling check_connection every 10 seconds. This check produces a lot of noise at the iscsi server logging. Signed-off-by: Victor Seva --- changes since v4: