ContainerStatus class

ContainerStatus contains details for the current status of this container.

Constructors

ContainerStatus({Map<String, String>? allocatedResources, String? containerID, required String image, required String imageID, ContainerState? lastState, required String name, required bool ready, ResourceRequirements? resources, required int restartCount, bool? started, ContainerState? state})
Default constructor.
const
ContainerStatus.fromJson(Map<String, dynamic> json)
Creates a ContainerStatus from JSON data.
factory

Properties

allocatedResources Map<String, String>?
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.
final
containerID String?
ContainerID is the ID of the container in the format '
final
hashCode int
The hash code for this object.
no setterinherited
image String
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.
final
imageID String
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.
final
lastState ContainerState?
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.
final
name String
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.
final
ready bool
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).
final
resources ResourceRequirements?
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.
final
restartCount int
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.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
started bool?
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.
final
state ContainerState?
State holds details about the container's current condition.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, Object>
Converts a ContainerStatus instance to JSON data.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited