forked from oracle/weblogic-kubernetes-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatus.json
More file actions
36 lines (36 loc) · 1.28 KB
/
status.json
File metadata and controls
36 lines (36 loc) · 1.28 KB
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
{
"type": "object",
"javaType": "oracle.kubernetes.weblogic.domain.v1.DomainStatus",
"description": "DomainStatus represents information about the status of a domain. Status may trail the actual state of a system.",
"properties": {
"conditions": {
"description": "Current service state of domain.",
"type": "array",
"items": {
"$ref": "condition.json"
},
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge"
},
"message": {
"description": "A human readable message indicating details about why the domain is in this condition.",
"type": "string"
},
"reason": {
"description": "A brief CamelCase message indicating details about why the domain is in this state.",
"type": "string"
},
"servers": {
"description": "Status of WebLogic servers in this domain.",
"type": "array",
"items": {
"$ref": "serverstatus.json"
}
},
"startTime": {
"description": "RFC 3339 date and time at which the operator started the domain. This will be when the operator begins processing and will precede when the various servers or clusters are available.",
"type": "date-time",
"javaType": "org.joda.time.DateTime"
}
}
}