Files
c/kubernetes/docs/v1_container_status.md

1.4 KiB

v1_container_status_t

Properties

Name Type Description Notes
container_id char * Container's ID in the format 'docker://<container_id>'. [optional]
image char * The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images.
image_id char * ImageID of the container's image.
last_state v1_container_state_t * [optional]
name char * This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.
ready int Specifies whether the container has passed its readiness probe.
restart_count int The number of times the container has been restarted.
started int 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 v1_container_state_t * [optional]

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