all lists on lists.proxmox.com
 help / color / mirror / Atom feed
* [pve-devel] [PATCH stable-7 guest-common] storage tunnel: correctly set disk-import parameters
@ 2024-11-29 11:54 Fiona Ebner
  2025-02-12 10:55 ` Fabian Grünbichler
  0 siblings, 1 reply; 5+ messages in thread
From: Fiona Ebner @ 2024-11-29 11:54 UTC (permalink / raw)
  To: pve-devel

From: Fabian Grünbichler <f.gruenbichler@proxmox.com>

according to the schema, else some combinations of migration / guest /
storage settings will fail validation:

2024-05-15 11:48:51 ERROR: migration_snapshot: type check ('boolean') failed - got ''

since this is client / source side, remote migrations to a remote node
with validation enabled can fail without this change.

The fact that this is required for Proxmox VE 7 was reported in the
community forum:
https://forum.proxmox.com/threads/158202/

While Proxmox VE 7 is end-of-life since the end of July 2024, it's
still nice to keep upgrade paths to supported versions open.

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
(cherry picked from commit 172ab9f5ccc40666478f2f83696e6b1e62090e2a)
[FE: add rationale for backport]
Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
---
 src/PVE/StorageTunnel.pm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/PVE/StorageTunnel.pm b/src/PVE/StorageTunnel.pm
index 41147dd..e6390df 100644
--- a/src/PVE/StorageTunnel.pm
+++ b/src/PVE/StorageTunnel.pm
@@ -50,13 +50,13 @@ sub storage_migrate {
     my $disk_import_opts = {
 	format => $format,
 	storage => $targetsid,
-	snapshot => $snapshot,
-	migration_snapshot => $migration_snapshot,
+	migration_snapshot => $migration_snapshot ? 1 : 0,
 	with_snapshots => $with_snapshots,
 	allow_rename => !$opts->{is_vmstate},
 	export_formats => join(",", @export_formats),
 	volname => $name,
     };
+    $disk_import_opts->{snapshot} = $snapshot if $snapshot;
     my $res = PVE::Tunnel::write_tunnel($tunnel, 600, 'disk-import', $disk_import_opts);
     my $local = "/run/pve/$local_vmid.storage";
     if (!$tunnel->{forwarded}->{$local}) {
-- 
2.39.5



_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-03-05 11:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-11-29 11:54 [pve-devel] [PATCH stable-7 guest-common] storage tunnel: correctly set disk-import parameters Fiona Ebner
2025-02-12 10:55 ` Fabian Grünbichler
2025-03-04 18:09   ` Thomas Lamprecht
2025-03-05  9:46     ` Fiona Ebner
2025-03-05 11:12       ` Thomas Lamprecht

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal