You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by sa...@apache.org on 2014/02/06 13:20:33 UTC

git commit: updated refs/heads/4.3-forward to bba6b77

Updated Branches:
  refs/heads/4.3-forward fb87c85b2 -> bba6b7717


CLOUDSTACK-5953: In hypervisor_capabilities, max_guests_limit are
not correct for XS 6.2 or other specific version hypervisor.


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/bba6b771
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/bba6b771
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/bba6b771

Branch: refs/heads/4.3-forward
Commit: bba6b77177a6404f1d27f7adc278b46fe00759f0
Parents: fb87c85
Author: Sanjay Tripathi <sa...@citrix.com>
Authored: Thu Feb 6 17:42:14 2014 +0530
Committer: Sanjay Tripathi <sa...@citrix.com>
Committed: Thu Feb 6 17:42:14 2014 +0530

----------------------------------------------------------------------
 setup/db/db/schema-421to430.sql | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/bba6b771/setup/db/db/schema-421to430.sql
----------------------------------------------------------------------
diff --git a/setup/db/db/schema-421to430.sql b/setup/db/db/schema-421to430.sql
index 316cbe9..43e94db 100644
--- a/setup/db/db/schema-421to430.sql
+++ b/setup/db/db/schema-421to430.sql
@@ -828,6 +828,8 @@ CREATE TABLE `cloud`.`network_acl_item_details` (
 
 ALTER TABLE `cloud`.`alert` ADD COLUMN `name` varchar(255) DEFAULT NULL COMMENT 'name of the alert';
 
+UPDATE `cloud`.`hypervisor_capabilities` set max_guests_limit='150' WHERE hypervisor_version='6.1.0';
+UPDATE `cloud`.`hypervisor_capabilities` set max_guests_limit='500' WHERE hypervisor_version='6.2.0';
 UPDATE `cloud`.`hypervisor_capabilities` SET `max_data_volumes_limit`=13 WHERE `hypervisor_type`='Vmware';
 INSERT IGNORE INTO `cloud`.`hypervisor_capabilities`(uuid, hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled, max_data_volumes_limit, storage_motion_supported) VALUES (UUID(), 'Hyperv', '6.2', 1024, 0, 64, 0);