@@ -224,3 +224,9 @@ CALL `cloud`.`IDEMPOTENT_MODIFY_COLUMN_CHAR_SET`('vpc', 'display_text', 'VARCHAR
224224CALL ` cloud` .` IDEMPOTENT_MODIFY_COLUMN_CHAR_SET` (' vpc_offerings' , ' name' , ' VARCHAR(255)' , ' DEFAULT NULL COMMENT \' vpc offering name\' ' );
225225CALL ` cloud` .` IDEMPOTENT_MODIFY_COLUMN_CHAR_SET` (' vpc_offerings' , ' unique_name' , ' VARCHAR(64)' , ' DEFAULT NULL COMMENT \' unique name of the vpc offering\' ' );
226226CALL ` cloud` .` IDEMPOTENT_MODIFY_COLUMN_CHAR_SET` (' vpc_offerings' , ' display_text' , ' VARCHAR(255)' , ' DEFAULT NULL COMMENT \' display text\' ' );
227+
228+ -- Add support for VMware 8.0u2 (8.0.2.x) and 8.0u3 (8.0.3.x)
229+ INSERT IGNORE INTO ` cloud` .` hypervisor_capabilities` (uuid, hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled, max_data_volumes_limit, max_hosts_per_cluster, storage_motion_supported, vm_snapshot_enabled) values (UUID(), ' VMware' , ' 8.0.2' , 1024 , 0 , 59 , 64 , 1 , 1 );
230+ INSERT IGNORE INTO ` cloud` .` guest_os_hypervisor` (uuid, hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, created, is_user_defined) SELECT UUID(),' VMware' , ' 8.0.2' , guest_os_name, guest_os_id, utc_timestamp(), 0 FROM ` cloud` .` guest_os_hypervisor` WHERE hypervisor_type= ' VMware' AND hypervisor_version= ' 8.0' ;
231+ INSERT IGNORE INTO ` cloud` .` hypervisor_capabilities` (uuid, hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled, max_data_volumes_limit, max_hosts_per_cluster, storage_motion_supported, vm_snapshot_enabled) values (UUID(), ' VMware' , ' 8.0.3' , 1024 , 0 , 59 , 64 , 1 , 1 );
232+ INSERT IGNORE INTO ` cloud` .` guest_os_hypervisor` (uuid, hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, created, is_user_defined) SELECT UUID(),' VMware' , ' 8.0.3' , guest_os_name, guest_os_id, utc_timestamp(), 0 FROM ` cloud` .` guest_os_hypervisor` WHERE hypervisor_type= ' VMware' AND hypervisor_version= ' 8.0' ;
0 commit comments