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
"Maximum recurring hourly backups to be retained for an instance. If the limit is reached, early backups from the start of the hour are deleted so that newer ones can be saved. This limit does not apply to manual backups. If set to 0, recurring hourly backups can not be scheduled.",
"Maximum recurring daily backups to be retained for an instance. If the limit is reached, backups from the start of the day are deleted so that newer ones can be saved. This limit does not apply to manual backups. If set to 0, recurring daily backups can not be scheduled.",
"Maximum recurring weekly backups to be retained for an instance. If the limit is reached, backups from the beginning of the week are deleted so that newer ones can be saved. This limit does not apply to manual backups. If set to 0, recurring weekly backups can not be scheduled.",
"Maximum recurring monthly backups to be retained for an instance. If the limit is reached, backups from the beginning of the month are deleted so that newer ones can be saved. This limit does not apply to manual backups. If set to 0, recurring monthly backups can not be scheduled.",
Copy file name to clipboardExpand all lines: server/src/main/java/com/cloud/configuration/Config.java
-69Lines changed: 0 additions & 69 deletions
Original file line number
Diff line number
Diff line change
@@ -1317,22 +1317,6 @@ public enum Config {
1317
1317
"20",
1318
1318
"The default maximum number of snapshots that can be created for an account",
1319
1319
null),
1320
-
DefaultMaxAccountBackups(
1321
-
"Account Defaults",
1322
-
ManagementServer.class,
1323
-
Long.class,
1324
-
"max.account.backups",
1325
-
"20",
1326
-
"The default maximum number of backups that can be created for an account",
1327
-
null),
1328
-
DefaultMaxAccountBackupStorage(
1329
-
"Account Defaults",
1330
-
ManagementServer.class,
1331
-
Long.class,
1332
-
"max.account.backup.storage",
1333
-
"400",
1334
-
"The default maximum backup storage space (in GiB) that can be used for an account",
1335
-
null),
1336
1320
DefaultMaxAccountVolumes(
1337
1321
"Account Defaults",
1338
1322
ManagementServer.class,
@@ -1389,22 +1373,6 @@ public enum Config {
1389
1373
"10",
1390
1374
"The default maximum number of projects that can be created for an account",
1391
1375
null),
1392
-
DefaultMaxAccountBuckets(
1393
-
"Account Defaults",
1394
-
ManagementServer.class,
1395
-
Long.class,
1396
-
"max.account.buckets",
1397
-
"20",
1398
-
"The default maximum number of buckets that can be created for an account",
1399
-
null),
1400
-
DefaultMaxAccountObjectStorage(
1401
-
"Account Defaults",
1402
-
ManagementServer.class,
1403
-
Long.class,
1404
-
"max.account.object.storage",
1405
-
"400",
1406
-
"The default maximum object storage space (in GiB) that can be used for an account",
1407
-
null),
1408
1376
1409
1377
//disabling lb as cluster sync does not work with distributed cluster
1410
1378
SubDomainNetworkAccess(
@@ -1447,8 +1415,6 @@ public enum Config {
1447
1415
DefaultMaxDomainPublicIPs("Domain Defaults", ManagementServer.class, Long.class, "max.domain.public.ips", "40", "The default maximum number of public IPs that can be consumed by a domain", null),
1448
1416
DefaultMaxDomainTemplates("Domain Defaults", ManagementServer.class, Long.class, "max.domain.templates", "40", "The default maximum number of templates that can be deployed for a domain", null),
1449
1417
DefaultMaxDomainSnapshots("Domain Defaults", ManagementServer.class, Long.class, "max.domain.snapshots", "40", "The default maximum number of snapshots that can be created for a domain", null),
1450
-
DefaultMaxDomainBackups("Domain Defaults", ManagementServer.class, Long.class, "max.domain.backups", "40", "The default maximum number of backups that can be created for a domain", null),
1451
-
DefaultMaxDomainBackupStorage("Domain Defaults", ManagementServer.class, Long.class, "max.domain.backup.storage", "800", "The default maximum backup storage space (in GiB) that can be used for a domain", null),
1452
1418
DefaultMaxDomainVolumes("Domain Defaults", ManagementServer.class, Long.class, "max.domain.volumes", "40", "The default maximum number of volumes that can be created for a domain", null),
1453
1419
DefaultMaxDomainNetworks("Domain Defaults", ManagementServer.class, Long.class, "max.domain.networks", "40", "The default maximum number of networks that can be created for a domain", null),
1454
1420
DefaultMaxDomainVpcs("Domain Defaults", ManagementServer.class, Long.class, "max.domain.vpcs", "40", "The default maximum number of vpcs that can be created for a domain", null),
@@ -1457,8 +1423,6 @@ public enum Config {
1457
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),
1458
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),
1459
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),
1460
-
DefaultMaxDomainBuckets("Domain Defaults", ManagementServer.class, Long.class, "max.domain.buckets", "40", "The default maximum number of buckets that can be created for a domain", null),
1461
-
DefaultMaxDomainObjectStorage("Domain Defaults", ManagementServer.class, Long.class, "max.domain.object.storage", "800", "The default maximum object storage space (in GiB) that can be used for a domain", null),
1462
1426
1463
1427
DefaultMaxProjectUserVms(
1464
1428
"Project Defaults",
@@ -1492,23 +1456,6 @@ public enum Config {
1492
1456
"20",
1493
1457
"The default maximum number of snapshots that can be created for a project",
1494
1458
null),
1495
-
// Move to configkey?
1496
-
DefaultMaxProjectBackups(
1497
-
"Project Defaults",
1498
-
ManagementServer.class,
1499
-
Long.class,
1500
-
"max.project.backups",
1501
-
"20",
1502
-
"The default maximum number of backups that can be created for a project",
1503
-
null),
1504
-
DefaultMaxProjectBackupStorage(
1505
-
"Project Defaults",
1506
-
ManagementServer.class,
1507
-
Long.class,
1508
-
"max.project.backup.storage",
1509
-
"400",
1510
-
"The default maximum backup storage space (in GiB) that can be used for a project",
1511
-
null),
1512
1459
DefaultMaxProjectVolumes(
1513
1460
"Project Defaults",
1514
1461
ManagementServer.class,
@@ -1557,22 +1504,6 @@ public enum Config {
1557
1504
"200",
1558
1505
"The default maximum primary storage space (in GiB) that can be used for an project",
1559
1506
null),
1560
-
DefaultMaxProjectBuckets(
1561
-
"Project Defaults",
1562
-
ManagementServer.class,
1563
-
Long.class,
1564
-
"max.project.buckets",
1565
-
"20",
1566
-
"The default maximum number of buckets that can be created for a project",
1567
-
null),
1568
-
DefaultMaxProjectObjectStorage(
1569
-
"Project Defaults",
1570
-
ManagementServer.class,
1571
-
Long.class,
1572
-
"max.project.object.storage",
1573
-
"400",
1574
-
"The default maximum object storage space (in GiB) that can be used for a project",
0 commit comments