Struct k8s_openapi::api::core::v1::ContainerStatus
source · pub struct ContainerStatus {Show 14 fields
pub allocated_resources: Option<BTreeMap<String, Quantity>>,
pub allocated_resources_status: Option<Vec<ResourceStatus>>,
pub container_id: Option<String>,
pub image: String,
pub image_id: String,
pub last_state: Option<ContainerState>,
pub name: String,
pub ready: bool,
pub resources: Option<ResourceRequirements>,
pub restart_count: i32,
pub started: Option<bool>,
pub state: Option<ContainerState>,
pub user: Option<ContainerUser>,
pub volume_mounts: Option<Vec<VolumeMountStatus>>,
}
Expand description
ContainerStatus contains details for the current status of this container.
Fields§
§allocated_resources: Option<BTreeMap<String, Quantity>>
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.
allocated_resources_status: Option<Vec<ResourceStatus>>
AllocatedResourcesStatus represents the status of various resources allocated for this Pod.
container_id: Option<String>
ContainerID is the ID of the container in the format ‘<type>://<container_id>’. Where type is a container runtime identifier, returned from Version call of CRI API (for example “containerd”).
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.
image_id: 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.
last_state: Option<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.
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.
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).
The value is typically used to determine whether a container is ready to accept traffic.
resources: Option<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.
restart_count: i32
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.
started: Option<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.
state: Option<ContainerState>
State holds details about the container’s current condition.
user: Option<ContainerUser>
User represents user identity information initially attached to the first process of the container
volume_mounts: Option<Vec<VolumeMountStatus>>
Status of volume mounts.
Trait Implementations§
source§impl Clone for ContainerStatus
impl Clone for ContainerStatus
source§fn clone(&self) -> ContainerStatus
fn clone(&self) -> ContainerStatus
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ContainerStatus
impl Debug for ContainerStatus
source§impl DeepMerge for ContainerStatus
impl DeepMerge for ContainerStatus
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
other
into self
.source§impl Default for ContainerStatus
impl Default for ContainerStatus
source§fn default() -> ContainerStatus
fn default() -> ContainerStatus
source§impl<'de> Deserialize<'de> for ContainerStatus
impl<'de> Deserialize<'de> for ContainerStatus
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
source§impl PartialEq for ContainerStatus
impl PartialEq for ContainerStatus
source§impl Serialize for ContainerStatus
impl Serialize for ContainerStatus
impl StructuralPartialEq for ContainerStatus
Auto Trait Implementations§
impl Freeze for ContainerStatus
impl RefUnwindSafe for ContainerStatus
impl Send for ContainerStatus
impl Sync for ContainerStatus
impl Unpin for ContainerStatus
impl UnwindSafe for ContainerStatus
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)