From 3dccbe3dc037f3f0b2e34c12492a075f5d874552 Mon Sep 17 00:00:00 2001 From: Rohit Yadav Date: Mon, 8 Dec 2014 21:54:31 +0530 Subject: [PATCH] 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 (cherry picked from commit 314e2daceeeecccdbdc34973d039d16817d2d166) Signed-off-by: Rohit Yadav --- developer/developer-prefill.sql | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/developer/developer-prefill.sql b/developer/developer-prefill.sql index 7534cefa995..c2d4f4357d8 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)