forked from instrumenta/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathcomponentcondition-v1.json
39 lines (39 loc) · 957 Bytes
/
componentcondition-v1.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
{
"description": "Information about the condition of a component.",
"properties": {
"error": {
"description": "Condition error code for a component. For example, a health check error code.",
"type": [
"string",
"null"
]
},
"message": {
"description": "Message about the condition for a component. For example, information about a health check.",
"type": [
"string",
"null"
]
},
"status": {
"description": "Status of the condition for a component. Valid values for \"Healthy\": \"True\", \"False\", or \"Unknown\".",
"type": [
"string",
"null"
]
},
"type": {
"description": "Type of condition for a component. Valid value: \"Healthy\"",
"type": [
"string",
"null"
]
}
},
"required": [
"type",
"status"
],
"type": "object",
"$schema": "http://json-schema.org/schema#"
}