Ref: https://github.com/harvester/harvester/issues/2293
Verify Steps:
- Install Harvester with any nodes
- Create an Image for VM creation
- Create
vm1
with the image and an additional data volumedisk-1
- Navigate to Volumes, clone disk-0 and disk-1 which attached to
vm1
by clickingClone Volume
- Create
vm2
with cloned disk-0 and disk-1 vm2
should started successfully- Login to
vm1
, execute following commands:fdisk /dev/vdb
with new and primary partitionmkfs.ext4 /dev/vdb1
mkdir vdb && mount -t ext4 /dev/vdb1 vdb
ping 127.0.0.1 | tee -a vdb/test
- Navigate to Volumes, then clone
disk-1
of vm1 into vm1-disk-2 - Navigate to Virtual Machines, then update
vm1
to add existing volumevm1-disk-2
- Login to
vm1
then mount/dev/vdb1
(disk-1) and/dev/vdc1
(disk-2) into vdb and vdc - test file should be appeared in both folders of vdb and vdc
- test file should not be empty in both folders of vdb and vdc