forked from instrumenta/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontainerstate.json
19 lines (19 loc) · 919 Bytes
/
containerstate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"description": "ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.",
"properties": {
"running": {
"description": "Details about a running container",
"$ref": "https://kubernetesjsonschema.dev/v1.12.1/_definitions.json#/definitions/io.k8s.api.core.v1.ContainerStateRunning"
},
"terminated": {
"description": "Details about a terminated container",
"$ref": "https://kubernetesjsonschema.dev/v1.12.1/_definitions.json#/definitions/io.k8s.api.core.v1.ContainerStateTerminated"
},
"waiting": {
"description": "Details about a waiting container",
"$ref": "https://kubernetesjsonschema.dev/v1.12.1/_definitions.json#/definitions/io.k8s.api.core.v1.ContainerStateWaiting"
}
},
"$schema": "http://json-schema.org/schema#",
"type": "object"
}