-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json.j2
47 lines (47 loc) · 1.17 KB
/
manifest.json.j2
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
{
"version": "1.0.0",
"package": {
"version": "{{ version }}",
"name": "cpu-report",
"changelog": {
"1.0.0": {
"changes": ["Initial release"],
"author": "Stepan Blyshchak",
"email": "[email protected]",
"date": "Mon, 25 May 2020 12:24:30 +0300"
},
"1.1.0": {
"changes": [
"Added functionality",
"Bug fixes"
],
"author": "Stepan Blyshchak",
"email": "[email protected]",
"date": "Fri, 23 Oct 2020 12:26:08 +0300"
}
}
},
"service": {
"name": "{{ container_name }}",
"warm-shutdown": {
"after": ["swss"],
"before": ["syncd"]
},
"fast-shutdown": {
"before": ["swss"]
}
},
"container": {
"privileged": true
},
"processes": [
{
"name": "cpu-report",
"command": "/usr/bin/cpu-report.py",
"reconciles": true
}
],
"cli": {
"show": "/cli/show.py"
}
}