-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathworkflow.schema.json
More file actions
executable file
·449 lines (449 loc) · 13.9 KB
/
workflow.schema.json
File metadata and controls
executable file
·449 lines (449 loc) · 13.9 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
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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/kitproj/kit/internal/types/workflow",
"$ref": "#/$defs/Workflow",
"$defs": {
"Duration": {
"properties": {
"Duration": {
"$ref": "#/$defs/Duration",
"title": "Duration"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"Duration"
],
"title": "Duration"
},
"EnvVars": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object",
"title": "EnvVars",
"description": "A list of environment variables."
},
"Envfile": {
"items": {
"type": "string"
},
"type": "array",
"title": "Envfile"
},
"HTTPGetAction": {
"properties": {
"scheme": {
"type": "string",
"title": "scheme",
"description": "Scheme to use for connecting to the host. Defaults to HTTP."
},
"port": {
"type": "integer",
"title": "port",
"description": "Number of the port"
},
"path": {
"type": "string",
"title": "path",
"description": "Path to access on the HTTP server."
}
},
"additionalProperties": false,
"type": "object",
"title": "HTTPGetAction",
"description": "HTTPGetAction describes an action based on HTTP Locks requests."
},
"HostPath": {
"properties": {
"path": {
"type": "string",
"title": "path",
"description": "Path of the directory on the host."
}
},
"additionalProperties": false,
"type": "object",
"required": [
"path"
],
"title": "HostPath"
},
"Lifecycle": {
"properties": {
"onSuccess": {
"$ref": "#/$defs/LifecycleHook",
"title": "onSuccess",
"description": "OnSuccess is the hook to run after the task succeeds."
},
"onFailure": {
"$ref": "#/$defs/LifecycleHook",
"title": "onFailure",
"description": "OnFailure is the hook to run after the task fails."
}
},
"additionalProperties": false,
"type": "object",
"title": "Lifecycle",
"description": "Lifecycle describes actions that the system should take in response to lifecycle events."
},
"LifecycleHook": {
"properties": {
"command": {
"$ref": "#/$defs/Strings",
"title": "command",
"description": "The command to run."
},
"sh": {
"type": "string",
"title": "sh",
"description": "The shell script to run, instead of command."
}
},
"additionalProperties": false,
"type": "object",
"title": "LifecycleHook",
"description": "LifecycleHook defines a command to run at a specific point in the task lifecycle."
},
"Port": {
"properties": {
"containerPort": {
"type": "integer",
"title": "containerPort",
"description": "The container port to expose"
},
"hostPort": {
"type": "integer",
"title": "hostPort",
"description": "The host port to route to the container port"
}
},
"additionalProperties": false,
"type": "object",
"title": "Port",
"description": "A port to expose."
},
"Ports": {
"items": {
"$ref": "#/$defs/Port"
},
"type": "array",
"title": "Ports",
"description": "A list of ports to expose."
},
"Probe": {
"properties": {
"tcpSocket": {
"$ref": "#/$defs/TCPSocketAction",
"title": "tcpSocket",
"description": "The action to perform."
},
"httpGet": {
"$ref": "#/$defs/HTTPGetAction",
"title": "httpGet",
"description": "The action to perform."
},
"initialDelaySeconds": {
"type": "integer",
"title": "initialDelaySeconds",
"description": "Number of seconds after the process has started before the probe is initiated."
},
"periodSeconds": {
"type": "integer",
"title": "periodSeconds",
"description": "How often (in seconds) to perform the probe."
},
"successThreshold": {
"type": "integer",
"title": "successThreshold",
"description": "Minimum consecutive successes for the probe to be considered successful after having failed."
},
"failureThreshold": {
"type": "integer",
"title": "failureThreshold",
"description": "Minimum consecutive failures for the probe to be considered failed after having succeeded."
}
},
"additionalProperties": false,
"type": "object",
"title": "Probe",
"description": "A probe to check if the task is alive, it will be restarted if not."
},
"Strings": {
"items": {
"type": "string"
},
"type": "array",
"title": "Strings"
},
"TCPSocketAction": {
"properties": {
"port": {
"type": "integer",
"title": "port",
"description": "Port number of the port to probe."
}
},
"additionalProperties": false,
"type": "object",
"required": [
"port"
],
"title": "TCPSocketAction",
"description": "TCPSocketAction describes an action based on opening a socket"
},
"Task": {
"properties": {
"type": {
"type": "string",
"title": "type",
"description": "Type is the type of the task: \"service\" or \"job\". If omitted, if there are ports, it's a service, otherwise it's a job.\nThis is only needed when you have service that does not listen on ports.\nServices are running in the background."
},
"log": {
"type": "string",
"title": "log",
"description": "Where to log the output of the task. E.g. if the task is verbose. Defaults to /dev/stdout. Maybe a file, or /dev/null."
},
"image": {
"type": "string",
"title": "image",
"description": "Either the container image to run, or a directory containing a Dockerfile. If omitted, the process runs on the host."
},
"imagePullPolicy": {
"type": "string",
"title": "imagePullPolicy",
"description": "Pull policy, e.g. Always, Never, IfNotPresent"
},
"livenessProbe": {
"$ref": "#/$defs/Probe",
"title": "livenessProbe",
"description": "A probe to check if the task is alive, it will be restarted if not. If omitted, the task is assumed to be alive."
},
"readinessProbe": {
"$ref": "#/$defs/Probe",
"title": "readinessProbe",
"description": "A probe to check if the task is ready to serve requests. If omitted, the task is assumed to be ready if when the first port is open."
},
"command": {
"$ref": "#/$defs/Strings",
"title": "command",
"description": "The command to run in the container or on the host. If both the image and the command are omitted, this is a noop."
},
"args": {
"$ref": "#/$defs/Strings",
"title": "args",
"description": "The arguments to pass to the command"
},
"sh": {
"type": "string",
"title": "sh",
"description": "The shell script to run, instead of the command"
},
"manifests": {
"$ref": "#/$defs/Strings",
"title": "manifests",
"description": "A directories or files of Kubernetes manifests to apply. Once running the task will wait for the resources to be ready."
},
"namespace": {
"type": "string",
"title": "namespace",
"description": "The namespace to run the Kubernetes resource in. Defaults to the namespace of the current Kubernetes context."
},
"workingDir": {
"type": "string",
"title": "workingDir",
"description": "The working directory in the container or on the host"
},
"user": {
"type": "string",
"title": "user",
"description": "The user to run the task as."
},
"env": {
"$ref": "#/$defs/EnvVars",
"title": "env",
"description": "Environment variables to set in the container or on the host"
},
"envfile": {
"$ref": "#/$defs/Envfile",
"title": "envfile",
"description": "Environment file (e.g. .env) to use"
},
"ports": {
"$ref": "#/$defs/Ports",
"title": "ports",
"description": "The ports to expose"
},
"volumeMounts": {
"items": {
"$ref": "#/$defs/VolumeMount"
},
"type": "array",
"title": "volumeMounts",
"description": "Volumes to mount in the container"
},
"tty": {
"type": "boolean",
"title": "tty",
"description": "Use a pseudo-TTY"
},
"watch": {
"$ref": "#/$defs/Strings",
"title": "watch",
"description": "A list of files to watch for changes, and restart the task if they change"
},
"mutex": {
"type": "string",
"title": "mutex",
"description": "A mutex to prevent multiple tasks with the same mutex from running at the same time"
},
"semaphore": {
"type": "string",
"title": "semaphore",
"description": "A semaphore to limit the number of tasks with the same semaphore that can run at the same time"
},
"dependencies": {
"$ref": "#/$defs/Strings",
"title": "dependencies",
"description": "A list of tasks to run before this task"
},
"targets": {
"$ref": "#/$defs/Strings",
"title": "targets",
"description": "A list of files this task will create. If these exist, and they're newer than the watched files, the task is skipped."
},
"restartPolicy": {
"type": "string",
"title": "restartPolicy",
"description": "The restart policy, e.g. Always, Never, OnFailure. Defaults depends on the type of task."
},
"stalledTimeout": {
"$ref": "#/$defs/Duration",
"title": "stalledTimeout",
"description": "The timeout for the task to be considered stalled. If omitted, the task will be considered stalled after 30 seconds of no activity."
},
"group": {
"type": "string",
"title": "group",
"description": "The group this task belongs to. Tasks in the same group will be visually grouped together in the UI."
},
"default": {
"type": "boolean",
"title": "default",
"description": "Whether this is the default task to run if no task is specified."
},
"lifecycle": {
"$ref": "#/$defs/Lifecycle",
"title": "lifecycle",
"description": "Lifecycle describes actions that the system should take in response to task lifecycle events."
}
},
"additionalProperties": false,
"type": "object",
"title": "Task",
"description": "A task is a container or a command to run."
},
"Tasks": {
"patternProperties": {
".*": {
"$ref": "#/$defs/Task"
}
},
"type": "object",
"title": "Tasks"
},
"Volume": {
"properties": {
"name": {
"type": "string",
"title": "name",
"description": "Volume's name."
},
"hostPath": {
"$ref": "#/$defs/HostPath",
"title": "hostPath",
"description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container."
}
},
"additionalProperties": false,
"type": "object",
"required": [
"name",
"hostPath"
],
"title": "Volume"
},
"VolumeMount": {
"properties": {
"name": {
"type": "string",
"title": "name",
"description": "This must match the name of a volume."
},
"mountPath": {
"type": "string",
"title": "mountPath",
"description": "Path within the container at which the volume should be mounted."
}
},
"additionalProperties": false,
"type": "object",
"required": [
"name",
"mountPath"
],
"title": "VolumeMount",
"description": "VolumeMount describes a mounting of a Volume within a container."
},
"Workflow": {
"properties": {
"port": {
"type": "integer",
"title": "port"
},
"terminationGracePeriodSeconds": {
"type": "integer",
"title": "terminationGracePeriodSeconds"
},
"tasks": {
"$ref": "#/$defs/Tasks",
"title": "tasks"
},
"volumes": {
"items": {
"$ref": "#/$defs/Volume"
},
"type": "array",
"title": "volumes"
},
"semaphores": {
"patternProperties": {
".*": {
"type": "integer"
}
},
"type": "object",
"title": "semaphores"
},
"env": {
"$ref": "#/$defs/EnvVars",
"title": "env"
},
"envfile": {
"$ref": "#/$defs/Envfile",
"title": "envfile"
},
"lifecycle": {
"$ref": "#/$defs/Lifecycle",
"title": "lifecycle"
}
},
"additionalProperties": false,
"type": "object",
"title": "Workflow"
}
}
}