forked from cw-ozaki/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaint.json
41 lines (41 loc) · 1.12 KB
/
taint.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
{
"description": "The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.",
"required": [
"key",
"effect"
],
"properties": {
"effect": {
"description": "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.",
"type": [
"string",
"null"
]
},
"key": {
"description": "Required. The taint key to be applied to a node.",
"type": [
"string",
"null"
]
},
"timeAdded": {
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": [
"string",
"null"
],
"format": "date-time"
},
"value": {
"description": "Required. The taint value corresponding to the taint key.",
"type": [
"string",
"null"
]
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/schema#",
"type": "object"
}