Repository: cloudstack Updated Branches: refs/heads/4.5 b0845150f -> d276c0faa
developer: increase disable thresholds global settings for developers - Increases the disable thresholds for developers - Removes the use local storage for systemvms Signed-off-by: Rohit Yadav <[email protected]> (cherry picked from commit 314e2daceeeecccdbdc34973d039d16817d2d166) Signed-off-by: Rohit Yadav <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/d276c0fa Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/d276c0fa Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/d276c0fa Branch: refs/heads/4.5 Commit: d276c0faab0ac4d200714d8eb2081ed1c47f13aa Parents: b084515 Author: Rohit Yadav <[email protected]> Authored: Mon Dec 8 21:54:31 2014 +0530 Committer: Rohit Yadav <[email protected]> Committed: Mon Dec 8 21:59:10 2014 +0530 ---------------------------------------------------------------------- developer/developer-prefill.sql | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/d276c0fa/developer/developer-prefill.sql ---------------------------------------------------------------------- diff --git a/developer/developer-prefill.sql b/developer/developer-prefill.sql index 7534cef..c2d4f43 100644 --- a/developer/developer-prefill.sql +++ b/developer/developer-prefill.sql @@ -64,7 +64,19 @@ INSERT INTO `cloud`.`configuration` (category, instance, component, name, value) INSERT INTO `cloud`.`configuration` (category, instance, component, name, value) VALUES ('Advanced', 'DEFAULT', 'management-server', - 'system.vm.use.local.storage', 'true'); + 'cluster.cpu.allocated.capacity.disablethreshold', '0.95'); + +INSERT INTO `cloud`.`configuration` (category, instance, component, name, value) + VALUES ('Advanced', 'DEFAULT', 'management-server', + 'cluster.memory.allocated.capacity.disablethreshold ', '0.95'); + +INSERT INTO `cloud`.`configuration` (category, instance, component, name, value) + VALUES ('Advanced', 'DEFAULT', 'management-server', + 'pool.storage.allocated.capacity.disablethreshold ', '0.95'); + +INSERT INTO `cloud`.`configuration` (category, instance, component, name, value) + VALUES ('Advanced', 'DEFAULT', 'management-server', + 'pool.storage.capacity.disablethreshold ', '0.95'); -- Add developer configuration entry; allows management server to be run as a user other than "cloud" INSERT INTO `cloud`.`configuration` (category, instance, component, name, value)
