You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have multiple mock hosts, and trying to create vm template on each host with vcsim. I found the cloned VM share config.hardware.device.
Is it possible to support full clone? The expectation is each VM could have its own device but not share.
Below is an example and the script to show the issue:
clone VM1 from DC0_H0_VM0, the virtual disk point to “[host-1-local-dc] clonevm_host_1/clonevm_host_1.vmdk”
After clone VM2 from DC0_H0_VM0, virtual disk for DC0_H0_VM0, VM1, VM2 are all changed to the same vmdk [host-2-local-dc] clonevm_host_2/clonevm_host_2.vmdk”.
The vcsim CloneVM_Task method was sharing the config.hardware.device property
between the source and target VMs. The target VM now has a copy of the device
list so changes to it won't change the source VM's device list.
Closesvmware#2706
The vcsim CloneVM_Task method was sharing the config.hardware.device property
between the source and target VMs. The target VM now has a copy of the device
list so changes to it won't change the source VM's device list.
Closesvmware#2706
I have multiple mock hosts, and trying to create vm template on each host with vcsim. I found the cloned VM share config.hardware.device.
Is it possible to support full clone? The expectation is each VM could have its own device but not share.
Below is an example and the script to show the issue:
clone VM1 from DC0_H0_VM0, the virtual disk point to “[host-1-local-dc] clonevm_host_1/clonevm_host_1.vmdk”
After clone VM2 from DC0_H0_VM0, virtual disk for DC0_H0_VM0, VM1, VM2 are all changed to the same vmdk [host-2-local-dc] clonevm_host_2/clonevm_host_2.vmdk”.
The text was updated successfully, but these errors were encountered: