-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdogu.json
323 lines (323 loc) · 11.3 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
{
"Name": "official/scm",
"Version": "3.7.1-1",
"DisplayName": "SCM-Manager",
"Description": "The easiest way to share and manage your Git, Mercurial and Subversion repositories over http.",
"Category": "Development Apps",
"Tags": [
"warp",
"code",
"scm",
"git",
"mercurial",
"subversion"
],
"Logo": "https://cloudogu.com/images/dogus/scm-manager.png",
"Url": "https://www.scm-manager.org",
"Image": "registry.cloudogu.com/official/scm",
"Dependencies": [
{
"type": "dogu",
"name": "cas",
"version": ">=7.0.5.1-6"
},
{
"type": "dogu",
"name": "nginx"
},
{
"type": "dogu",
"name": "postfix"
}
],
"OptionalDependencies": [
{
"type": "dogu",
"name": "redmine"
},
{
"type": "dogu",
"name": "easyredmine"
},
{
"type": "dogu",
"name": "jenkins"
},
{
"type": "dogu",
"name": "cockpit"
},
{
"type": "dogu",
"name": "jira"
},
{
"type": "dogu",
"name": "gotenberg"
}
],
"ServiceAccounts": [
{
"Type": "cas",
"Params": [
"cas"
]
}
],
"Configuration": [
{
"Name": "plugin_center_url",
"Description": "URL of SCM-Manager Plugin Center",
"Optional": true
},
{
"Name": "plugin_center_authentication_url",
"Description": "URL of SCM-Manager Plugin Center authentication service. To delete the URL and hence disable plugin center authentication, set this to 'none'.",
"Optional": true
},
{
"Name": "release_feed_url",
"Description": "URL of SCM-Manager release RSS feed",
"Optional": true
},
{
"Name": "login_info_url",
"Description": "URL for the login info. To delete the URL and hence disable the login info feature, set this to 'none'",
"Optional": true
},
{
"Name": "alerts_url",
"Description": "URL for alerts in SCM-Manager. To delete the URL and hence disable the alerts feature, set this to 'none'",
"Optional": true
},
{
"Name": "disable_release_feed",
"Description": "If set to 'true', SCM-Manager will not query for new releases",
"Optional": true
},
{
"Name": "additional_plugins",
"Description": "Comma separated list of plugin names to install on start. Uninstalled plugins will also be installed again, since they are defined as default.",
"Optional": true
},
{
"Name": "update_plugins",
"Description": "Set to 'true' to install available plugin updates on startup",
"Optional": true
},
{
"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). We recommend at least 1200m of memory for SCM.",
"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 SCM 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 SCM: 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 SCM 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 SCM: 50%",
"Optional": true,
"Default": "50.0",
"Validation": {
"Type": "FLOAT_PERCENTAGE_HUNDRED"
}
},
{
"Name": "redmine_type",
"Description": "If both, Redmine and EasyRedmine are installed, this sets which instance should be configured",
"Optional": true,
"Default": "EASY_REDMINE",
"Validation": {
"Type": "ONE_OF",
"Values": [
"REDMINE",
"EASY_REDMINE"
]
}
},
{
"Name": "logging/root",
"Description": "Set the root log level to one of ERROR, WARN, INFO, DEBUG or TRACE. Default is INFO",
"Optional": true,
"Default": "INFO",
"Validation": {
"Type": "ONE_OF",
"Values": [
"WARN",
"ERROR",
"INFO",
"DEBUG",
"TRACE"
]
}
},
{
"Name": "caching/workdir/size",
"Description": "Size of cache for working directories used to edit repository content, for example using the editor or the review plugin. To disable cache, clean this value.",
"Optional": true,
"Default": "5"
},
{
"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/memory_request",
"Description": "Requests the container's minimal memory requirement. 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"
},
"Default": "700m"
},
{
"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/cpu_core_limit",
"Description": "Limits the container's CPU core usage. Use a positive floating value describing a fraction of 1 CPU core. When you define a value of '0.5', you are requesting half as much CPU time compared to if you asked for '1.0' CPU.",
"Optional": true
},
{
"Name": "container_config/cpu_core_request",
"Description": "Requests the container's minimal CPU core requirement. Use a positive floating value describing a fraction of 1 CPU core. When you define a value of '0.5', you are requesting half as much CPU time compared to if you asked for '1.0' CPU.",
"Optional": true,
"Default": "1.0"
},
{
"Name": "container_config/storage_limit",
"Description": "Limits the container's ephemeral storage 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/storage_request",
"Description": "Requests the container's minimal ephemeral storage requirement. 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": "caching/stores/enabled",
"Description": "To enable store caches, set this to 'true'.",
"Optional": true,
"Default": "false"
},
{
"Name": "caching/dataFiles/size",
"Description": "To enable data file caches, set this to an integer value > 0.",
"Optional": true,
"Default": "0"
},
{
"Name": "install_smeagol_plugin",
"Description": "",
"Optional": true,
"Validation": {
"Type": "ONE_OF",
"Values": [
"true",
"false"
]
},
"Default": "false"
}
],
"ExposedPorts": [
{
"Type": "tcp",
"Host": 2222,
"Container": 2222
}
],
"ExposedCommands": [
{
"Name": "service-account-create",
"Description": "Creates a new service account",
"Command": "/create-sa.sh"
},
{
"Name": "service-account-remove",
"Description": "Removes a service account",
"Command": "/remove-sa.sh"
},
{
"Name": "pre-upgrade",
"Command": "/pre-upgrade.sh"
},
{
"Name": "upgrade-notification",
"Command": "/upgrade-notification.sh"
}
],
"Volumes": [
{
"Name": "data",
"Path": "/var/lib/scm",
"Owner": "1000",
"Group": "1000",
"NeedsBackup": true
},
{
"Name": "custom.init.script.d",
"Path": "/var/lib/custom.init.script.d",
"Owner": "1000",
"Group": "1000",
"NeedsBackup": true
},
{
"Name": "cache",
"Path": "/var/cache",
"Owner": "1000",
"Group": "1000",
"NeedsBackup": false
},
{
"Name": "temp",
"Path": "/tmp",
"Owner": "1000",
"Group": "1000",
"NeedsBackup": false
},
{
"Name": "localConfig",
"Path": "/var/ces/config",
"Owner": "1000",
"Group": "1000",
"NeedsBackup": true
}
],
"HealthCheck": {
"Type": "tcp",
"Port": 8080
}
}