@jkcfg/kubernetes
Version:
jk Kubernetes library
49 lines • 1.35 kB
JSON
{
"$schema": "http://json-schema.org/schema#",
"required": [
"exitCode"
],
"type": "object",
"description": "ContainerStateTerminated is a terminated state of a container.",
"properties": {
"containerID": {
"type": [
"string",
"null"
],
"description": "Container's ID in the format 'docker://<container_id>'"
},
"signal": {
"type": "integer",
"description": "Signal from the last termination of the container",
"format": "int32"
},
"reason": {
"type": [
"string",
"null"
],
"description": "(brief) reason from the last termination of the container"
},
"finishedAt": {
"description": "Time at which the container last terminated",
"$ref": "_definitions.json#/definitions/unversioned.Time"
},
"startedAt": {
"description": "Time at which previous execution of the container started",
"$ref": "_definitions.json#/definitions/unversioned.Time"
},
"message": {
"type": [
"string",
"null"
],
"description": "Message regarding the last termination of the container"
},
"exitCode": {
"type": "integer",
"description": "Exit status from the last termination of the container",
"format": "int32"
}
}
}