-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
score-v1b1.json
410 lines (410 loc) · 13.2 KB
/
score-v1b1.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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://score.dev/schemas/score",
"title": "Score schema",
"description": "Score workload specification",
"type": "object",
"required": [
"apiVersion",
"metadata",
"containers"
],
"additionalProperties": false,
"properties": {
"apiVersion": {
"description": "The declared Score Specification version.",
"type": "string",
"pattern": "^score\\.dev/v1b1$"
},
"metadata": {
"description": "The metadata description of the Workload.",
"type": "object",
"required": [
"name"
],
"additionalProperties": true,
"properties": {
"name": {
"description": "A string that can describe the Workload. This must be a valid RFC1123 Label Name of up to 63 characters, including a-z, 0-9, '-' but may not start or end with '-'.",
"type": "string",
"minLength": 2,
"maxLength": 63,
"pattern": "^[a-z0-9][a-z0-9-]{0,61}[a-z0-9]$"
},
"annotations": {
"description": "Annotations that apply to the Workload. The annotation can contain A-Z, a-z, 0-9, and '-' and may contain an optional /-separated RFC1123 Host Name prefix.",
"type": "object",
"additionalProperties": {
"type": "string"
},
"propertyNames": {
"minLength": 2,
"maxLength": 316,
"pattern": "^(([a-z0-9][a-z0-9-]{0,61}[a-z0-9])(\\.[a-z0-9][a-z0-9-]{0,61}[a-z0-9])*/)?[A-Za-z0-9][A-Za-z0-9._-]{0,61}[A-Za-z0-9]$"
}
}
}
},
"service": {
"description": "The service that the workload provides.",
"type": "object",
"additionalProperties": false,
"properties": {
"ports": {
"description": "The set of named network ports published by the service. The service name must be a valid RFC1123 Label Name of up to 63 characters, including a-z, 0-9, '-' but may not start or end with '-'.",
"type": "object",
"propertyNames": {
"minLength": 2,
"maxLength": 63,
"pattern": "^[a-z0-9][a-z0-9-]{0,61}[a-z0-9]$"
},
"additionalProperties": {
"$ref": "#/$defs/servicePort"
}
}
}
},
"containers": {
"description": "The set of named containers in the Workload. The container name must be a valid RFC1123 Label Name of up to 63 characters, including a-z, 0-9, '-' but may not start or end with '-'.",
"type": "object",
"minProperties": 1,
"additionalProperties": {
"$ref": "#/$defs/container"
},
"propertyNames": {
"minLength": 2,
"maxLength": 63,
"pattern": "^[a-z0-9][a-z0-9-]{0,61}[a-z0-9]$"
}
},
"resources": {
"description": "The Resource dependencies needed by the Workload. The resource name must be a valid RFC1123 Label Name of up to 63 characters, including a-z, 0-9, '-' but may not start or end with '-'.",
"type": "object",
"additionalProperties": {
"$ref": "#/$defs/resource"
},
"propertyNames": {
"minLength": 2,
"maxLength": 63,
"pattern": "^[a-z0-9][a-z0-9-]{0,61}[a-z0-9]$"
}
}
},
"$defs": {
"servicePort": {
"description": "The network port description.",
"type": "object",
"required": [
"port"
],
"additionalProperties": false,
"properties": {
"port": {
"description": "The public service port.",
"type": "integer",
"minimum": 1,
"maximum": 65535
},
"protocol": {
"description": "The transport level protocol. Defaults to TCP.",
"type": "string",
"enum": [
"TCP",
"UDP"
]
},
"targetPort": {
"description": "The internal service port. This will default to 'port' if not provided.",
"type": "integer",
"minimum": 1,
"maximum": 65535
}
}
},
"resource": {
"description": "The set of Resources associated with this Workload.",
"type": "object",
"additionalProperties": false,
"required": [
"type"
],
"properties": {
"type": {
"description": "The Resource type. This should be a type supported by the Score implementations being used.",
"type": "string",
"minLength": 2,
"maxLength": 63,
"pattern": "^[A-Za-z0-9][A-Za-z0-9-]{0,61}[A-Za-z0-9]$"
},
"class": {
"description": "An optional specialisation of the Resource type.",
"type": "string",
"minLength": 2,
"maxLength": 63,
"pattern": "^[A-Za-z0-9][A-Za-z0-9-]{0,61}[A-Za-z0-9]$"
},
"id": {
"description": "An optional Resource identifier. The id may be up to 63 characters, including one or more labels of a-z, 0-9, '-' not starting or ending with '-' separated by '.'. When two resources share the same type, class, and id, they are considered the same resource when used across related Workloads.",
"type": "string",
"minLength": 2,
"maxLength": 63,
"pattern": "^[a-z0-9]+(?:-+[a-z0-9]+)*(?:\\.[a-z0-9]+(?:-+[a-z0-9]+)*)*$"
},
"metadata": {
"description": "The metadata for the Resource.",
"type": "object",
"additionalProperties": true,
"properties": {
"annotations": {
"description": "Annotations that apply to the Resource. The annotation can contain A-Z, a-z, 0-9, and '-' and may contain an optional /-separated RFC1123 Host Name prefix.",
"type": "object",
"additionalProperties": {
"type": "string"
},
"propertyNames": {
"minLength": 2,
"maxLength": 316,
"pattern": "^(([a-z0-9][a-z0-9-]{0,61}[a-z0-9])(\\.[a-z0-9][a-z0-9-]{0,61}[a-z0-9])*/)?[A-Za-z0-9][A-Za-z0-9._-]{0,61}[A-Za-z0-9]$"
}
}
}
},
"params": {
"description": "Optional parameters used to provision the Resource in the environment.",
"type": "object",
"additionalProperties": true
}
}
},
"resourcesLimits": {
"description": "The compute and memory resource limits.",
"type": "object",
"additionalProperties": false,
"properties": {
"memory": {
"description": "The memory limit in bytes with optional unit specifier. For example 125M or 1Gi.",
"type": "string",
"pattern": "^[1-9]\\d*(K|M|G|T|Ki|Mi|Gi|Ti)?$"
},
"cpu": {
"description": "The CPU limit as whole or fractional CPUs. 'm' indicates milli-CPUs. For example 2 or 125m.",
"type": "string",
"pattern": "^\\d*(?:m|\\.\\d+)?$"
}
}
},
"container": {
"description": "The specification of a Container within the Workload.",
"type": "object",
"required": [
"image"
],
"additionalProperties": false,
"properties": {
"image": {
"description": "The container image name and tag.",
"type": "string",
"minLength": 1
},
"command": {
"description": "If specified, overrides the entrypoint defined in the container image.",
"type": "array",
"items": {
"type": "string"
}
},
"args": {
"description": "If specified, overrides the arguments passed to the container entrypoint.",
"type": "array",
"items": {
"type": "string"
}
},
"variables": {
"description": "The environment variables for the container.",
"type": "object",
"propertyNames": {
"minLength": 1,
"pattern": "^[^=]+$"
},
"additionalProperties": {
"type": "string"
}
},
"files": {
"description": "The extra files to mount into the container.",
"type": "array",
"items": {
"type": "object",
"required": [
"target"
],
"additionalProperties": false,
"properties": {
"target": {
"description": "The file path to expose in the container.",
"type": "string",
"minLength": 1
},
"mode": {
"description": "The optional file access mode in octal encoding. For example 0600.",
"type": "string",
"pattern": "^0?[0-7]{3}$"
},
"source": {
"description": "The relative or absolute path to the content file.",
"type": "string",
"minLength": 1
},
"content": {
"description": "The inline content for the file.",
"type": "string"
},
"noExpand": {
"description": "If set to true, the placeholders expansion will not occur in the contents of the file.",
"type": "boolean"
}
},
"oneOf": [
{
"required": [
"target",
"content"
]
},
{
"required": [
"target",
"source"
]
}
]
}
},
"volumes": {
"description": "The volumes to mount.",
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"source",
"target"
],
"properties": {
"source": {
"description": "The external volume reference.",
"type": "string"
},
"path": {
"description": "An optional sub path in the volume.",
"type": "string"
},
"target": {
"description": "The target mount on the container.",
"type": "string"
},
"readOnly": {
"description": "Indicates if the volume should be mounted in a read-only mode.",
"type": "boolean"
}
}
}
},
"resources": {
"description": "The compute resources for the container.",
"type": "object",
"additionalProperties": false,
"properties": {
"limits": {
"description": "The maximum allowed resources for the container.",
"$ref": "#/$defs/resourcesLimits"
},
"requests": {
"description": "The minimal resources required for the container.",
"$ref": "#/$defs/resourcesLimits"
}
}
},
"livenessProbe": {
"description": "The liveness probe for the container.",
"$ref": "#/$defs/containerProbe"
},
"readinessProbe": {
"description": "The readiness probe for the container.",
"$ref": "#/$defs/containerProbe"
}
}
},
"containerProbe": {
"type": "object",
"required": [
"httpGet"
],
"additionalProperties": false,
"properties": {
"httpGet": {
"$ref": "#/$defs/httpProbe"
}
}
},
"httpProbe": {
"description": "An HTTP probe details.",
"type": "object",
"additionalProperties": false,
"required": [
"port",
"path"
],
"properties": {
"host": {
"description": "Host name to connect to. Defaults to the workload IP. The is equivalent to a Host HTTP header.",
"type": "string",
"minLength": 1
},
"scheme": {
"description": "Scheme to use for connecting to the host (HTTP or HTTPS). Defaults to HTTP.",
"type": "string",
"enum": [
"HTTP",
"HTTPS"
]
},
"path": {
"description": "The path to access on the HTTP server.",
"type": "string"
},
"port": {
"description": "The port to access on the workload.",
"type": "integer",
"minimum": 1,
"maximum": 65535
},
"httpHeaders": {
"description": "Additional HTTP headers to send with the request",
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"name",
"value"
],
"properties": {
"name": {
"description": "The HTTP header name.",
"type": "string",
"pattern": "^[A-Za-z0-9_-]+$"
},
"value": {
"description": "The HTTP header value.",
"type": "string",
"minLength": 1
}
}
}
}
}
}
}
}