Skip to content

Commit 1ef0598

Browse files
authored
vmware: add support for VMware 6.7 (#3413)
This adds support for VMware 6.7 Fixes #2700 Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
1 parent 2c70c73 commit 1ef0598

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

engine/schema/src/main/resources/META-INF/db/schema-41200to41300.sql

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
-- Schema upgrade from 4.12.0.0 to 4.13.0.0
2020
--;
2121

22+
-- Add support for VMware 6.7
23+
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', '6.7', 128, 0, 13, 32, 1, 1);
24+
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', '6.7', guest_os_name, guest_os_id, utc_timestamp(), 0 FROM `cloud`.`guest_os_hypervisor` WHERE hypervisor_type='VMware' AND hypervisor_version='6.5';
25+
2226
-- DPDK client and server mode support
2327
ALTER TABLE `cloud`.`service_offering_details` CHANGE COLUMN `value` `value` TEXT NOT NULL;
2428

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
<cs.servlet.version>4.0.0</cs.servlet.version>
161161
<cs.tomcat-embed-core.version>8.0.30</cs.tomcat-embed-core.version>
162162
<cs.trilead.version>1.0.0-build221</cs.trilead.version>
163-
<cs.vmware.api.version>6.5</cs.vmware.api.version>
163+
<cs.vmware.api.version>6.7</cs.vmware.api.version>
164164
<cs.xapi.version>6.2.0-3.1</cs.xapi.version>
165165
<cs.xml-apis.version>1.4.01</cs.xml-apis.version>
166166
<cs.xmlrpc.version>3.1.3</cs.xmlrpc.version>

0 commit comments

Comments
 (0)