forked from adamlaska/boulder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjanitor.json
More file actions
63 lines (63 loc) · 1.47 KB
/
janitor.json
File metadata and controls
63 lines (63 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"janitor": {
"syslog": {
"stdoutLevel": 6
},
"db": {
"dbConnectFile": "test/secrets/janitor_dburl",
"maxOpenConns": 10
},
"debugAddr": ":8014",
"jobConfigs": [
{
"enabled": true,
"table": "certificates",
"gracePeriod": "2184h",
"batchSize": 100,
"workSleep": "500ms",
"parallelism": 2,
"maxDPS": 50
},
{
"enabled": true,
"table": "certificateStatus",
"expiresColumn": "notAfter",
"gracePeriod": "2184h",
"batchSize": 100,
"workSleep": "500ms",
"parallelism": 2,
"maxDPS": 50
},
{
"enabled": true,
"table": "certificatesPerName",
"expiresColumn": "time",
"gracePeriod": "2184h",
"batchSize": 100,
"workSleep": "500ms",
"parallelism": 2,
"maxDPS": 50
},
{
"enabled": true,
"table": "keyHashToSerial",
"expiresColumn": "certNotAfter",
"gracePeriod": "2184h",
"batchSize": 100,
"workSleep": "500ms",
"parallelism": 2,
"maxDPS": 50
},
{
"enabled": true,
"table": "orders",
"gracePeriod": "2184h",
"batchSize": 100,
"workSleep": "500ms",
"parallelism": 2,
"maxDPS": 50,
"deleteHandler": "deleteOrder"
}
]
}
}