Repository: cloudstack Updated Branches: refs/heads/4.4 3c4f776ff -> 79f8d6f5c
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/79f8d6f5 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/79f8d6f5 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/79f8d6f5 Branch: refs/heads/4.4 Commit: 79f8d6f5cfc49efef8a417aa9aa6a1db09d15330 Parents: 3c4f776 Author: Rohit Yadav <[email protected]> Authored: Mon Dec 8 21:54:31 2014 +0530 Committer: Rohit Yadav <[email protected]> Committed: Mon Dec 8 21:56:30 2014 +0530 ---------------------------------------------------------------------- developer/developer-prefill.sql | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/79f8d6f5/developer/developer-prefill.sql ---------------------------------------------------------------------- diff --git a/developer/developer-prefill.sql b/developer/developer-prefill.sql index e5fb4e3..c4cd95e 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)
