From 9ec2884e40535b364f7c86deacf03510685c9712 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 17 Mar 2025 18:05:47 -0400 Subject: [PATCH] Fix bug where RBD list is not updated on rename --- daemon-common/vm.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/daemon-common/vm.py b/daemon-common/vm.py index fee966a2..3a445f3d 100644 --- a/daemon-common/vm.py +++ b/daemon-common/vm.py @@ -605,12 +605,14 @@ def rename_vm(zkhandler, domain, new_domain): rbd_list.append(disk["name"].split("/")[1]) # Rename each volume in turn + rbd_list_new = [] for idx, rbd in enumerate(rbd_list): rbd_new = re.sub(r"{}".format(domain), new_domain, rbd) # Skip renaming if nothing changed if rbd_new == rbd: continue ceph.rename_volume(zkhandler, pool_list[idx], rbd, rbd_new) + rbd_list_new.append(f"{pool_list[idx]}/{rbd_new}") # Replace the name in the config vm_config_new = ( @@ -627,6 +629,7 @@ def rename_vm(zkhandler, domain, new_domain): [ (("domain", dom_uuid), new_domain), (("domain.xml", dom_uuid), vm_config_new), + (("domain.rbdlist", dom_uuid), ",".join(rbd_list_new)), ] )