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.
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.
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.
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.
ContainerStatus contains details for the current status of this container.