-
Notifications
You must be signed in to change notification settings - Fork 242
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libvirt_vm: enablement of SAN based guest with LUN id #1593
base: master
Are you sure you want to change the base?
Conversation
35a34b7
to
464d857
Compare
Debug log
|
shared/cfg/base.cfg
Outdated
@@ -268,6 +268,17 @@ image_unbootable_pattern = "Hard Disk.*not a bootable disk" | |||
# export_ip: optional. | |||
# export_options: optional. | |||
|
|||
# SAN support related params. Please fill the params based on the environment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@balamuruhans could you check if we can reuse this param image_raw_device
, in-additional , so that even qemu vm can get benefited...and basically image_raw_device
can be replaced with storage_lun_id
and we can give the full path instead, may be sometime we might have to /dev/mapper
so lets not hardcode /dev/disk/by-id
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure, I will check to reuse the image_raw_device and avoid hardcoding /dev/disk/by-id. Thank you.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the improvements, made the changes as suggested. I will test it and post the results for the same
f9ca016
to
f714ff6
Compare
Boot guest with SAN based storage type using LUN id which can be retrieved from /dev/disk/by-id, this enablement helps to use the guest for SAN based migration tests. As LUN id would be same when LUN is shared across multiple host and it is necessary for migration to succeed. Suggested-by: Satheesh Rajendran <[email protected]> Signed-off-by: Balamuruhan S <[email protected]>
f714ff6
to
618a2f7
Compare
Boot guest with SAN based storage type using LUN id which can be
retrieved from /dev/disk/by-id, this enablement helps to use the
guest for SAN based migration tests. As LUN id would be same when
LUN is shared across multiple host and it is necessary for
migration to succeed.
Suggested-by: Satheesh Rajendran [email protected]
Signed-off-by: Balamuruhan S [email protected]