Package io.fabric8.kubernetes.api.model
Class ContainerStatus
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.ContainerStatus
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<ContainerStatusBuilder>
,KubernetesResource
,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class ContainerStatus extends Object implements io.fabric8.kubernetes.api.builder.Editable<ContainerStatusBuilder>, KubernetesResource
ContainerStatus contains details for the current status of this container.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ContainerStatus()
No args constructor for use in serializationContainerStatus(Map<String,Quantity> allocatedResources, List<ResourceStatus> allocatedResourcesStatus, String containerID, String image, String imageID, ContainerState lastState, String name, Boolean ready, ResourceRequirements resources, Integer restartCount, Boolean started, ContainerState state, String stopSignal, ContainerUser user, List<VolumeMountStatus> volumeMounts)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ContainerStatusBuilder
edit()
Map<String,Object>
getAdditionalProperties()
Map<String,Quantity>
getAllocatedResources()
AllocatedResources represents the compute resources allocated for this container by the node.List<ResourceStatus>
getAllocatedResourcesStatus()
AllocatedResourcesStatus represents the status of various resources allocated for this Pod.String
getContainerID()
ContainerID is the ID of the container in the format '<type>://<container_id>'.String
getImage()
Image is the name of container image that the container is running.String
getImageID()
ImageID is the image ID of the container's image.ContainerState
getLastState()
ContainerStatus contains details for the current status of this container.String
getName()
Name is a DNS_LABEL representing the unique name of the container.Boolean
getReady()
Ready specifies whether the container is currently passing its readiness check.ResourceRequirements
getResources()
ContainerStatus contains details for the current status of this container.Integer
getRestartCount()
RestartCount holds the number of times the container has been restarted.Boolean
getStarted()
Started indicates whether the container has finished its postStart lifecycle hook and passed its startup probe.ContainerState
getState()
ContainerStatus contains details for the current status of this container.String
getStopSignal()
StopSignal reports the effective stop signal for this containerContainerUser
getUser()
ContainerStatus contains details for the current status of this container.List<VolumeMountStatus>
getVolumeMounts()
Status of volume mounts.void
setAdditionalProperties(Map<String,Object> additionalProperties)
void
setAdditionalProperty(String name, Object value)
void
setAllocatedResources(Map<String,Quantity> allocatedResources)
AllocatedResources represents the compute resources allocated for this container by the node.void
setAllocatedResourcesStatus(List<ResourceStatus> allocatedResourcesStatus)
AllocatedResourcesStatus represents the status of various resources allocated for this Pod.void
setContainerID(String containerID)
ContainerID is the ID of the container in the format '<type>://<container_id>'.void
setImage(String image)
Image is the name of container image that the container is running.void
setImageID(String imageID)
ImageID is the image ID of the container's image.void
setLastState(ContainerState lastState)
ContainerStatus contains details for the current status of this container.void
setName(String name)
Name is a DNS_LABEL representing the unique name of the container.void
setReady(Boolean ready)
Ready specifies whether the container is currently passing its readiness check.void
setResources(ResourceRequirements resources)
ContainerStatus contains details for the current status of this container.void
setRestartCount(Integer restartCount)
RestartCount holds the number of times the container has been restarted.void
setStarted(Boolean started)
Started indicates whether the container has finished its postStart lifecycle hook and passed its startup probe.void
setState(ContainerState state)
ContainerStatus contains details for the current status of this container.void
setStopSignal(String stopSignal)
StopSignal reports the effective stop signal for this containervoid
setUser(ContainerUser user)
ContainerStatus contains details for the current status of this container.void
setVolumeMounts(List<VolumeMountStatus> volumeMounts)
Status of volume mounts.ContainerStatusBuilder
toBuilder()
-
-
-
Constructor Detail
-
ContainerStatus
public ContainerStatus()
No args constructor for use in serialization
-
ContainerStatus
public ContainerStatus(Map<String,Quantity> allocatedResources, List<ResourceStatus> allocatedResourcesStatus, String containerID, String image, String imageID, ContainerState lastState, String name, Boolean ready, ResourceRequirements resources, Integer restartCount, Boolean started, ContainerState state, String stopSignal, ContainerUser user, List<VolumeMountStatus> volumeMounts)
-
-
Method Detail
-
getAllocatedResources
public Map<String,Quantity> getAllocatedResources()
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.
-
setAllocatedResources
public void setAllocatedResources(Map<String,Quantity> allocatedResources)
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.
-
getAllocatedResourcesStatus
public List<ResourceStatus> getAllocatedResourcesStatus()
AllocatedResourcesStatus represents the status of various resources allocated for this Pod.
-
setAllocatedResourcesStatus
public void setAllocatedResourcesStatus(List<ResourceStatus> allocatedResourcesStatus)
AllocatedResourcesStatus represents the status of various resources allocated for this Pod.
-
getContainerID
public String getContainerID()
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").
-
setContainerID
public void setContainerID(String containerID)
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").
-
getImage
public String getImage()
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.
-
setImage
public void setImage(String image)
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.
-
getImageID
public String getImageID()
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.
-
setImageID
public void setImageID(String imageID)
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.
-
getLastState
public ContainerState getLastState()
ContainerStatus contains details for the current status of this container.
-
setLastState
public void setLastState(ContainerState lastState)
ContainerStatus contains details for the current status of this container.
-
getName
public String getName()
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.
-
setName
public void setName(String name)
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.
-
getReady
public Boolean getReady()
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.
-
setReady
public void setReady(Boolean ready)
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.
-
getResources
public ResourceRequirements getResources()
ContainerStatus contains details for the current status of this container.
-
setResources
public void setResources(ResourceRequirements resources)
ContainerStatus contains details for the current status of this container.
-
getRestartCount
public Integer getRestartCount()
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.
-
setRestartCount
public void setRestartCount(Integer restartCount)
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.
-
getStarted
public Boolean getStarted()
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.
-
setStarted
public void setStarted(Boolean started)
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.
-
getState
public ContainerState getState()
ContainerStatus contains details for the current status of this container.
-
setState
public void setState(ContainerState state)
ContainerStatus contains details for the current status of this container.
-
getStopSignal
public String getStopSignal()
StopSignal reports the effective stop signal for this container
-
setStopSignal
public void setStopSignal(String stopSignal)
StopSignal reports the effective stop signal for this container
-
getUser
public ContainerUser getUser()
ContainerStatus contains details for the current status of this container.
-
setUser
public void setUser(ContainerUser user)
ContainerStatus contains details for the current status of this container.
-
getVolumeMounts
public List<VolumeMountStatus> getVolumeMounts()
Status of volume mounts.
-
setVolumeMounts
public void setVolumeMounts(List<VolumeMountStatus> volumeMounts)
Status of volume mounts.
-
edit
public ContainerStatusBuilder edit()
- Specified by:
edit
in interfaceio.fabric8.kubernetes.api.builder.Editable<ContainerStatusBuilder>
-
toBuilder
public ContainerStatusBuilder toBuilder()
-
-