@@ -1634,7 +1634,6 @@ CREATE TABLE `cloud`.`hypervisor_capabilities` (
16341634 ` max_guests_limit` bigint unsigned DEFAULT 50 ,
16351635 ` security_group_enabled` int (1 ) unsigned DEFAULT 1 COMMENT ' Is security group supported' ,
16361636 ` max_data_volumes_limit` int unsigned DEFAULT 6 COMMENT ' Max. data volumes per VM supported by hypervisor' ,
1637- ` max_hosts_per_cluster` int unsigned DEFAULT NULL COMMENT ' Max. hosts in cluster supported by hypervisor' ,
16381637 PRIMARY KEY (` id` ),
16391638 CONSTRAINT ` uc_hypervisor_capabilities__uuid` UNIQUE (` uuid` )
16401639) ENGINE= InnoDB AUTO_INCREMENT= 1 DEFAULT CHARSET= utf8;
@@ -1646,11 +1645,10 @@ INSERT IGNORE INTO `cloud`.`hypervisor_capabilities`(hypervisor_type, hypervisor
16461645INSERT IGNORE INTO ` cloud` .` hypervisor_capabilities` (hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled) VALUES (' XenServer' , ' 5.6 SP2' , 50 , 1 );
16471646INSERT IGNORE INTO ` cloud` .` hypervisor_capabilities` (hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled, max_data_volumes_limit) VALUES (' XenServer' , ' 6.0' , 50 , 1 , 13 );
16481647INSERT IGNORE INTO ` cloud` .` hypervisor_capabilities` (hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled, max_data_volumes_limit) VALUES (' XenServer' , ' 6.0.2' , 50 , 1 , 13 );
1649- INSERT IGNORE INTO ` cloud` .` hypervisor_capabilities` (hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled, max_hosts_per_cluster) VALUES (' VMware' , ' default' , 128 , 0 , 32 );
1650- INSERT IGNORE INTO ` cloud` .` hypervisor_capabilities` (hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled, max_hosts_per_cluster) VALUES (' VMware' , ' 4.0' , 128 , 0 , 32 );
1651- INSERT IGNORE INTO ` cloud` .` hypervisor_capabilities` (hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled, max_hosts_per_cluster) VALUES (' VMware' , ' 4.1' , 128 , 0 , 32 );
1652- INSERT IGNORE INTO ` cloud` .` hypervisor_capabilities` (hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled, max_hosts_per_cluster) VALUES (' VMware' , ' 5.0' , 128 , 0 , 32 );
1653- INSERT IGNORE INTO ` cloud` .` hypervisor_capabilities` (hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled, max_hosts_per_cluster) VALUES (' VMware' , ' 5.1' , 128 , 0 , 32 );
1648+ INSERT IGNORE INTO ` cloud` .` hypervisor_capabilities` (hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled) VALUES (' VMware' , ' default' , 128 , 0 );
1649+ INSERT IGNORE INTO ` cloud` .` hypervisor_capabilities` (hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled) VALUES (' VMware' , ' 4.0' , 128 , 0 );
1650+ INSERT IGNORE INTO ` cloud` .` hypervisor_capabilities` (hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled) VALUES (' VMware' , ' 4.1' , 128 , 0 );
1651+ INSERT IGNORE INTO ` cloud` .` hypervisor_capabilities` (hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled) VALUES (' VMware' , ' 5.0' , 128 , 0 );
16541652INSERT IGNORE INTO ` cloud` .` hypervisor_capabilities` (hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled) VALUES (' KVM' , ' default' , 50 , 1 );
16551653INSERT IGNORE INTO ` cloud` .` hypervisor_capabilities` (hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled) VALUES (' Ovm' , ' default' , 25 , 1 );
16561654INSERT IGNORE INTO ` cloud` .` hypervisor_capabilities` (hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled) VALUES (' Ovm' , ' 2.3' , 25 , 1 );
0 commit comments