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
Copy file name to clipboardExpand all lines: server/src/main/java/com/cloud/configuration/Config.java
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1365,6 +1365,14 @@ public enum Config {
1365
1365
"200",
1366
1366
"The default maximum primary storage space (in GiB) that can be used for an account",
1367
1367
null),
1368
+
DefaultMaxAccountProjects(
1369
+
"Account Defaults",
1370
+
ManagementServer.class,
1371
+
Long.class,
1372
+
"max.account.projects",
1373
+
"10",
1374
+
"The default maximum number of projects that can be created for an account",
1375
+
null),
1368
1376
1369
1377
//disabling lb as cluster sync does not work with distributed cluster
1370
1378
SubDomainNetworkAccess(
@@ -1414,6 +1422,7 @@ public enum Config {
1414
1422
DefaultMaxDomainMemory("Domain Defaults", ManagementServer.class, Long.class, "max.domain.memory", "81920", "The default maximum memory (in MB) that can be used for a domain", null),
1415
1423
DefaultMaxDomainPrimaryStorage("Domain Defaults", ManagementServer.class, Long.class, "max.domain.primary.storage", "400", "The default maximum primary storage space (in GiB) that can be used for a domain", null),
1416
1424
DefaultMaxDomainSecondaryStorage("Domain Defaults", ManagementServer.class, Long.class, "max.domain.secondary.storage", "800", "The default maximum secondary storage space (in GiB) that can be used for a domain", null),
1425
+
DefaultMaxDomainProjects("Domain Defaults",ManagementServer.class,Long.class,"max.domain.projects","50","The default maximum number of projects that can be created for a domain",null),
0 commit comments