Skip to content

Commit a68d898

Browse files
committed
developer: add commonly used glboal config in developer-prefill.sql
This commit adds three commonly used config that developers usually set after fresh deployment. The account cleanup timeout is set to 60s to speed up BVT runs. Signed-off-by: Rohit Yadav <[email protected]>
1 parent cda0884 commit a68d898

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

developer/developer-prefill.sql

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,18 @@ INSERT INTO `cloud`.`configuration` (category, instance, component, name, value)
4646
VALUES ('Advanced', 'DEFAULT', 'management-server',
4747
'integration.api.port', '8096');
4848

49+
INSERT INTO `cloud`.`configuration` (category, instance, component, name, value)
50+
VALUES ('Advanced', 'DEFAULT', 'management-server',
51+
'secstorage.allowed.internal.sites', '0.0.0.0/0');
52+
53+
INSERT INTO `cloud`.`configuration` (category, instance, component, name, value)
54+
VALUES ('Advanced', 'DEFAULT', 'management-server',
55+
'account.cleanup.interval', '60');
56+
57+
INSERT INTO `cloud`.`configuration` (category, instance, component, name, value)
58+
VALUES ('Advanced', 'DEFAULT', 'management-server',
59+
'system.vm.use.local.storage', 'true');
60+
4961
-- Add developer configuration entry; allows management server to be run as a user other than "cloud"
5062
INSERT INTO `cloud`.`configuration` (category, instance, component, name, value)
5163
VALUES ('Advanced', 'DEFAULT', 'management-server',

0 commit comments

Comments
 (0)