-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.schema.json.bak
37 lines (37 loc) · 1018 Bytes
/
values.schema.json.bak
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
{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"properties": {
"requests": {
"type": "object",
"form": true,
"title": "Minimum requests",
"properties": {
"gpu": {
"type": "boolean",
"title": "Request GPU",
"description": "Mark only if you want to use a GPU.",
"form": true
},
"cpu": {
"type": "string",
"title": "CPUs",
"description": "How many CPUs do you need? (Examples: 0.5, 1, 2, ...)",
"form": true
},
"memory": {
"type": "string",
"title": "Memory",
"description": "How much memory do you need? (Examples: 200Mi, 1Gi, 4Gi, ...)",
"form": true
}
}
},
"datasets_list": {
"type": "string",
"title": "Dataset list",
"description": "A comma separated list of the datasets that will be available at the container. (It can be empty)",
"form": true
}
}
}