python/kubernetes/docs/V1ContainerStatus.md
Nabarun Pal b4d11b02a3
Update client with OpenAPI generator v4.3.0
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2020-07-16 13:42:39 +05:30

1.6 KiB

V1ContainerStatus

ContainerStatus contains details for the current status of this container.

Properties

Name Type Description Notes
container_id str Container's ID in the format 'docker://<container_id>'. [optional]
image str The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images
image_id str ImageID of the container's image.
last_state V1ContainerState [optional]
name str This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.
ready bool Specifies whether the container has passed its readiness probe.
restart_count int The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection. This value will get capped at 5 by GC.
started bool Specifies whether the container has passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. Is always true when no startupProbe is defined. [optional]
state V1ContainerState [optional]

[Back to Model list] [Back to API list] [Back to README]