OBJECT

KubernetesKindPodStatusInitContainerStatuses

ContainerStatus contains details for the current status of this container.

link GraphQL Schema definition

  • type KubernetesKindPodStatusInitContainerStatuses {
  • # Container's ID in the format 'docker://'.
  • containerID: String
  • # The image the container is running. More info:
  • # https://kubernetes.io/docs/concepts/containers/images TODO(dchen1107): Which
  • # image the container is running with?
  • image: String
  • # ImageID of the container's image.
  • imageID: String
  • # Details about the container's last termination condition.
  • lastState: KubernetesKindPodStatusInitContainerStatusesLastState
  • # This must be a DNS_LABEL. Each container in a pod must have a unique name.
  • # Cannot be updated.
  • name: String
  • # Specifies whether the container has passed its readiness probe.
  • ready: Boolean
  • # 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.
  • restartCount: 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.
  • started: Boolean
  • # Details about the container's current condition.
  • state: KubernetesKindPodStatusInitContainerStatusesState
  • }