ContainerStatusPatch

data class ContainerStatusPatch(val allocatedResources: Map<String, String>? = null, val containerID: String? = null, val image: String? = null, val imageID: String? = null, val lastState: ContainerStatePatch? = null, val name: String? = null, val ready: Boolean? = null, val resources: ResourceRequirementsPatch? = null, val restartCount: Int? = null, val started: Boolean? = null, val state: ContainerStatePatch? = null)

ContainerStatus contains details for the current status of this container.

Constructors

Link copied to clipboard
constructor(allocatedResources: Map<String, String>? = null, containerID: String? = null, image: String? = null, imageID: String? = null, lastState: ContainerStatePatch? = null, name: String? = null, ready: Boolean? = null, resources: ResourceRequirementsPatch? = null, restartCount: Int? = null, started: Boolean? = null, state: ContainerStatePatch? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

AllocatedResources represents the compute resources allocated for this container by the node. Kubelet sets this value to Container.Resources.Requests upon successful pod admission and after successfully admitting desired pod resize.

Link copied to clipboard
val containerID: String? = null

ContainerID is the ID of the container in the format '://'. Where type is a container runtime identifier, returned from Version call of CRI API (for example "containerd").

Link copied to clipboard
val image: String? = null

Image is the name of container image that the container is running. The container image may not match the image used in the PodSpec, as it may have been resolved by the runtime. More info: https://kubernetes.io/docs/concepts/containers/images.

Link copied to clipboard
val imageID: String? = null

ImageID is the image ID of the container's image. The image ID may not match the image ID of the image used in the PodSpec, as it may have been resolved by the runtime.

Link copied to clipboard

LastTerminationState holds the last termination state of the container to help debug container crashes and restarts. This field is not populated if the container is still running and RestartCount is 0.

Link copied to clipboard
val name: String? = null

Name is a DNS_LABEL representing the unique name of the container. Each container in a pod must have a unique name across all container types. Cannot be updated.

Link copied to clipboard
val ready: Boolean? = null

Ready specifies whether the container is currently passing its readiness check. The value will change as readiness probes keep executing. If no readiness probes are specified, this field defaults to true once the container is fully started (see Started field). The value is typically used to determine whether a container is ready to accept traffic.

Link copied to clipboard

Resources represents the compute resource requests and limits that have been successfully enacted on the running container after it has been started or has been successfully resized.

Link copied to clipboard
val restartCount: Int? = null

RestartCount holds the number of times the container has been restarted. Kubelet makes an effort to always increment the value, but there are cases when the state may be lost due to node restarts and then the value may be reset to 0. The value is never negative.

Link copied to clipboard
val started: Boolean? = null

Started indicates whether the container has finished its postStart lifecycle hook and 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. In both cases, startup probes will run again. Is always true when no startupProbe is defined and container is running and has passed the postStart lifecycle hook. The null value must be treated the same as false.

Link copied to clipboard

State holds details about the container's current condition.