You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CLOUDSTACK-3779: Support System vm scaling on VMWare
Marked the system template new system template as dynamicallyScalable
- handled upgrade case
- moved "dynamicallyScalable" flag to vm_instance table from user_vm_details to support dynamic scaling of system vm
Signed off by : Nitin Mehta<nitin.mehta@citrix.com>
ALTERTABLE`cloud`.`load_balancer_vm_map` ADD state VARCHAR(40) NULL COMMENT 'service status updated by LB healthcheck manager';
44
44
45
45
ALTERTABLE`cloud`.`vm_template` ADD COLUMN `dynamically_scalable`tinyint(1) unsigned NOT NULL DEFAULT 0 COMMENT 'true if template contains XS/VMWare tools inorder to support dynamic scaling of VM cpu/memory';
46
+
ALTERTABLE`cloud`.`vm_instance` ADD COLUMN `dynamically_scalable`tinyint(1) unsigned NOT NULL DEFAULT 0 COMMENT 'true if VM contains XS/VMWare tools inorder to support dynamic scaling of VM cpu/memory';
46
47
UPDATE`cloud`.`vm_template`SET dynamically_scalable =1WHERE name ="CentOS 5.6(64-bit) no GUI (XenServer)"AND type ="BUILTIN";
48
+
UPDATE`cloud`.`vm_template`SET dynamically_scalable =1WHERE name ="SystemVM Template (vSphere)"AND type ="SYSTEM";
0 commit comments