forked from instrumenta/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtaint.json
36 lines (36 loc) · 1.06 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
{
"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": "TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints.",
"$ref": "https://kubernetesjsonschema.dev/v1.12.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
},
"value": {
"description": "Required. The taint value corresponding to the taint key.",
"type": [
"string",
"null"
]
}
},
"$schema": "http://json-schema.org/schema#",
"type": "object"
}