-
Notifications
You must be signed in to change notification settings - Fork 4
/
dogu.json
110 lines (110 loc) · 3.13 KB
/
dogu.json
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"Name": "official/smeagol",
"Version": "1.7.4-1",
"DisplayName": "Smeagol",
"Description": "Store your technical documentation with in your git repositories",
"Category": "Development Apps",
"Tags": [
"warp",
"wiki",
"docs",
"gollum",
"git"
],
"Url": "https://cloudogu.com",
"Image": "registry.cloudogu.com/official/smeagol",
"Dependencies": [
{
"type": "dogu",
"name": "cas",
"Version": ">=7.0.5.1-6"
},
{
"type": "dogu",
"name": "nginx"
},
{
"type": "dogu",
"name": "scm",
"version": ">=2.20.0-1"
}
],
"ServiceAccounts": [
{
"Type": "cas",
"Params": [
"cas"
]
}
],
"Configuration": [
{
"Name": "logging/root",
"Description": "Set the root log level to one of ERROR, WARN, INFO, DEBUG.",
"Optional": true,
"Default": "WARN",
"Validation": {
"Type": "ONE_OF",
"Values": [
"WARN",
"DEBUG",
"INFO",
"ERROR"
]
}
},
{
"Name": "container_config/memory_limit",
"Description": "Limits the container's memory usage. Use a positive integer value followed by one of these units [b,k,m,g] (byte, kibibyte, mebibyte, gibibyte).",
"Optional": true,
"Validation": {
"Type": "BINARY_MEASUREMENT"
}
},
{
"Name": "container_config/swap_limit",
"Description": "Limits the container's swap memory usage. Use zero or a positive integer value followed by one of these units [b,k,m,g] (byte, kibibyte, mebibyte, gibibyte). 0 will disable swapping.",
"Optional": true,
"Validation": {
"Type": "BINARY_MEASUREMENT"
}
},
{
"Name": "container_config/java_max_ram_percentage",
"Description": "Limits the heap stack size of the Smeagol process to the configured percentage of the available physical memory when the container has more than approx. 250 MB of memory available. Is only considered when a memory_limit is set. Use a valid float value with decimals between 0 and 100 (f. ex. 55.0 for 55%). Default value for Smeagol: 25%",
"Optional": true,
"Default": "25.0",
"Validation": {
"Type": "FLOAT_PERCENTAGE_HUNDRED"
}
},
{
"Name": "container_config/java_min_ram_percentage",
"Description": "Limits the heap stack size of the Smeagol process to the configured percentage of the available physical memory when the container has less than approx. 250 MB of memory available. Is only considered when a memory_limit is set. Use a valid float value with decimals between 0 and 100 (f. ex. 55.0 for 55%). Default value for Smeagol: 50%",
"Optional": true,
"Default": "50.0",
"Validation": {
"Type": "FLOAT_PERCENTAGE_HUNDRED"
}
}
],
"Volumes": [
{
"Name": "data",
"Path": "/var/lib/smeagol",
"Owner": "1000",
"Group": "1000",
"NeedsBackup": false
}
],
"ExposedCommands": [
{
"Name": "upgrade-notification",
"Command": "/upgrade-notification.sh"
}
],
"HealthCheck": {
"Type": "tcp",
"Port": 8080
}
}