generated from golang-templates/seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.json
428 lines (428 loc) · 12.8 KB
/
schema.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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
{
"$ref": "#/definitions/scheduler-conf",
"definitions": {
"scheduler-conf": {
"type": "object",
"additionalProperties": false,
"properties": {
"jobs": {
"type": "array",
"items": {
"$ref": "#/definitions/Job"
},
"description": "An array of Job objects that define the tasks to be executed."
},
"variables": {
"type": "object",
"additionalProperties": true
}
},
"required": [
"jobs"
],
"title": "scheduler-conf"
},
"Job": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"description": "A string that represents the name of the job."
},
"description": {
"type": "string",
"description": "An optional string that provides a description of the job."
},
"disabled": {
"type": "boolean",
"description": "An optional boolean that indicates whether the job is disabled or not."
},
"tasks": {
"type": "array",
"items": {
"$ref": "#/definitions/Task"
},
"description": "An array of Task objects that define the tasks to be executed as part of the job."
},
"events": {
"type": "array",
"items": {
"$ref": "#/definitions/Event"
},
"description": "An array of Event objects that define the scheduling configuration for the job."
},
"hooks": {
"$ref": "#/definitions/Hooks",
"description": "An optional Hooks object that defines the hooks to be executed before or after the job."
},
"concurrency": {
"type": "integer",
"validate": {
"minimum": 1
},
"description": "Amount of concurrent tasks that will be executed at the same time. defaults to 1"
}
},
"required": [
"name",
"events",
"tasks"
],
"title": "Job"
},
"Hooks": {
"type": "object",
"additionalProperties": false,
"properties": {
"done": {
"type": "array",
"items": {
"$ref": "#/definitions/Task"
},
"description": "An array of Task objects that define the tasks to be executed when the job is completed successfully."
},
"failed": {
"type": "array",
"items": {
"$ref": "#/definitions/Task"
},
"description": "An array of Task objects that define the tasks to be executed when the job fails."
}
},
"title": "Hooks"
},
"Event": {
"type": "object",
"additionalProperties": false,
"properties": {
"cron": {
"type": "string",
"description": "A string that represents the cron expression that defines the scheduling frequency. (enables cron)",
"examples": [
"* * * * *",
"* * * * * *",
"@hourly",
"@every 5s",
"@yearly"
]
},
"interval": {
"type": "string",
"description": "A string that represents the interval at which the job should be executed. (enables interval)",
"examples": [
"1s",
"10m",
"1h",
"3.5h",
"5h30m15s"
]
},
"on-init": {
"type": "boolean",
"description": "Indicates that the job should trigger its tasks once initialized. (enables on-init)"
},
"web-event": {
"type": "string",
"description": "Event name that received from webserver that should trigger this job. (enables web events)"
},
"log-file": {
"type": "string",
"description": "Path to log file. (enables the log file checking)"
},
"log-check-cycle": {
"type": "string",
"description": "A string that represents the interval at which the log file should be checked.",
"examples": [
"1s",
"10m",
"1h",
"3.5h",
"5h30m15s"
]
},
"log-line-breaker": {
"type": "string",
"examples": [
"\\n",
"\\r\\n"
],
"description": "split log data by this string, defaults to `\\n`"
},
"log-matcher": {
"type": "string",
"examples": [
"[(?<level>INFO|ERROR|WARNING|DEBUG)] .*",
"AppState (<?id>\\d*)"
],
"description": "log line will be matched against this matcher, defaults to `.`(anything)"
},
"docker": {
"type": "object",
"additionalProperties": false,
"properties": {
"connection": {
"type": "string",
"examples": [
"unix:///var/run/docker.sock"
],
"description": "Docker connection string (context), defaults to `unix:///var/run/docker.sock`."
},
"name": {
"type": "string",
"examples": [
"nginx",
".*nginx.*",
"^project.*"
],
"description": "Name matcher of the container, supports regex."
},
"image": {
"type": "string",
"examples": [
"redis:7.2.1-alpine",
"redis:.*"
],
"description": "Name matcher of the image, supports regex."
},
"actions": {
"type": "array",
"items": {
"type": "string",
"enum": [
"create",
"start",
"restart",
"stop",
"checkpoint",
"pause",
"unpause",
"attach",
"detach",
"resize",
"update",
"rename",
"kill",
"die",
"oom",
"destroy",
"remove",
"commit",
"top",
"copy",
"archive-path",
"extract-to-dir",
"export",
"import",
"save",
"load",
"tag",
"untag",
"push",
"pull",
"prune",
"delete",
"enable",
"disable",
"connect",
"disconnect",
"reload",
"mount",
"unmount",
"exec_create",
"exec_start",
"exec_die",
"exec_detach",
"health_status",
"health_status: running",
"health_status: healthy",
"health_status: unhealthy"
]
},
"description": "What happened to the container"
},
"labels": {
"type": "object",
"description": "Labels of the affected container, supports `key: regex value`."
},
"error-limit-count": {
"type": "integer",
"validate": {
"minimum": 1
},
"description": "How many consecutive errors must happen before enforcing the error-limit-policy"
},
"error-limit-policy": {
"type": "integer",
"enum": [
"kill",
"give-up",
"reconnect"
],
"description": "What should happen after error limit is reached, (kill: kills the crontab-go, give-up: ignore error and disconnect from the instance and ignore this instance for the rest of the process, reconnect: reconnect: (default behavior) will attempt to reconnect to the instance)"
},
"error-throttle": {
"type": "string",
"description": "Wait time after an error happens (events from that docker instance in this time will be ignored).",
"examples": [
"1s",
"10m",
"1h",
"3.5h",
"5h30m15s"
]
}
},
"description": "Listen for docker events"
}
},
"required": [],
"title": "Event"
},
"Task": {
"type": "object",
"additionalProperties": false,
"properties": {
"command": {
"type": "string",
"description": "A string that represents the command to be executed."
},
"retries": {
"type": "integer",
"description": "An integer that represents the number of times the task should be retried in case of failure.",
"validate": {
"minimum": 1
}
},
"retry-delay": {
"type": "string",
"description": "A string that represents the delay between retries.",
"example": "1s 10m15s"
},
"timeout": {
"type": "string",
"description": "A string that represents the timeout for the task."
},
"working-dir": {
"type": "string",
"description": "A string that represents the working directory for the task."
},
"user": {
"type": "string",
"description": "Username that this command must run as. (root privilege needed)"
},
"group": {
"type": "string",
"description": "Groupname that this command must run as. (root privilege needed)"
},
"env": {
"$ref": "#/definitions/Map",
"description": "An Env object that defines the environment variables for the task."
},
"get": {
"type": "string",
"format": "uri",
"qt-uri-protocols": [
"https",
"http"
],
"description": "A string that represents the URL to be fetched using the GET method."
},
"headers": {
"type": "array",
"items": {
"$ref": "#/definitions/Map"
},
"description": "An array of Header objects that define the headers to be sent with the request."
},
"post": {
"type": "string",
"format": "uri",
"qt-uri-protocols": [
"https",
"http"
],
"description": "A string that represents the URL to be sent using the POST method."
},
"on-done": {
"type": "array",
"items": {
"$ref": "#/definitions/Task"
},
"description": "List of optional hooks"
},
"on-fail": {
"type": "array",
"items": {
"$ref": "#/definitions/Task"
},
"description": "Username that this command must run as. (root privilege needed)"
},
"data": {
"$ref": "#/definitions/Data",
"description": "A Data object that defines the data to be sent with the request."
},
"connections": {
"type": "array",
"items": {
"$ref": "#/definitions/TaskConnection"
},
"description": "Connection config."
}
},
"required": [],
"title": "Task"
},
"Data": {
"type": "object",
"additionalProperties": true,
"required": [],
"title": "Data"
},
"TaskConnection": {
"type": "object",
"additionalProperties": false,
"properties": {
"local": {
"type": "boolean",
"title": "Local environment"
},
"docker": {
"type": "string",
"title": "docker connection string"
},
"container": {
"type": "string",
"title": "container name/id matcher",
"description": "Should match only one container, if matches two or more container the command will fail"
},
"image": {
"type": "string",
"title": "Image name/id"
},
"volumes": {
"type": "array",
"items": {
"type": "string"
},
"title": "Volumes"
},
"networks": {
"type": "array",
"items": {
"type": "string"
},
"title": "Networks"
}
},
"required": [],
"title": "Data"
},
"Map": {
"type": "object",
"additionalProperties": true,
"properties": {},
"title": "Map"
}
}
}