mirror of https://github.com/apache/cloudstack.git
Merge pull request #980 from borisroman/CLOUDSTACK-8992
[4.6] CLOUDSTACK-8992 Allow 32 disks to be attached to a KVM VM.Tested manually. Added 32 disks to a VM, booted the VM, formatted all disks and mounted them all. Also created volume group and wrote all disks full. Also checked UI for glitches, which weren't present.     * pr/980: CLOUDSTACK-8992 Allow 32 disks to be attached to a KVM VM. Signed-off-by: Remi Bergsma <github@remi.nl>
This commit is contained in:
commit
88dd3009d8
|
|
@ -418,3 +418,5 @@ CREATE TABLE `cloud`.`ldap_trust_map` (
|
|||
|
||||
INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (uuid,hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, created, is_user_defined) VALUES (UUID(),'KVM', 'default', 'Red Hat Enterprise Linux 7', 245, utc_timestamp(), 0);
|
||||
INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (uuid,hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, created, is_user_defined) VALUES (UUID(),'KVM', 'default', 'CentOS 7', 246, utc_timestamp(), 0);
|
||||
|
||||
UPDATE `cloud`.`hypervisor_capabilities` SET `max_data_volumes_limit` = '32' WHERE `hypervisor_capabilities`.`hypervisor_type` = 'KVM';
|
||||
|
|
|
|||
Loading…
Reference in New Issue