This procedure uses virt-manager GUI interface. I'm sure there is a way to do this from the command line as well.

View->Details 
Add Hardware on the bottom leftSelect or create custom storage 
Manage 
"+" 
"raw" from the "format" dropdown"Finish" "Add New Virtual Hardware" window, set "Bus Type" to "SCSI" "Finish" "Detailed" view of the VM, under the new storage device, select "Shareable" 
"/dev/sda" (or similar) which is the shared device# on VM-1 mkfs.lustre --ost --fsname=lustrewt --servicenode=192.168.122.114@tcp --servicenode=192.168.122.110@tcp --reformat --index=0 --mgsnode=192.168.122.117@tcp /dev/sda mount -t lustre /dev/sda /mnt/ost/ # to go through a failover do # on VM-1 umount /mnt/ost # on VM-2 mount -t lustre /dev/sda /mnt/ost/ |