UNPKG

@jkcfg/kubernetes

Version:
55 lines 1.45 kB
{ "description": "ContainerStateTerminated is a terminated state of a container.", "required": [ "exitCode" ], "properties": { "containerID": { "description": "Container's ID in the format 'docker://<container_id>'", "type": [ "string", "null" ] }, "exitCode": { "description": "Exit status from the last termination of the container", "type": [ "integer", "null" ], "format": "int32" }, "finishedAt": { "description": "Time at which the container last terminated", "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" }, "message": { "description": "Message regarding the last termination of the container", "type": [ "string", "null" ] }, "reason": { "description": "(brief) reason from the last termination of the container", "type": [ "string", "null" ] }, "signal": { "description": "Signal from the last termination of the container", "type": [ "integer", "null" ], "format": "int32" }, "startedAt": { "description": "Time at which previous execution of the container started", "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" } }, "$schema": "http://json-schema.org/schema#", "type": "object" }