Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 4.15 KB

PodStatus.md

File metadata and controls

25 lines (21 loc) · 4.15 KB

PodStatus

Properties

Name Type Description Notes
conditions list[PodCondition] Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions +optional +patchMergeKey=type +patchStrategy=merge [optional]
container_statuses list[ContainerStatus] The list has one entry per container in the manifest. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status +optional [optional]
ephemeral_container_statuses list[ContainerStatus] Status for any ephemeral containers that have run in this pod. +optional [optional]
host_ip str hostIP holds the IP address of the host to which the pod is assigned. Empty if the pod has not started yet. A pod can be assigned to a node that has a problem in kubelet which in turns mean that HostIP will not be updated even if there is a node is assigned to pod +optional [optional]
host_i_ps list[HostIP] hostIPs holds the IP addresses allocated to the host. If this field is specified, the first entry must match the hostIP field. This list is empty if the pod has not started yet. A pod can be assigned to a node that has a problem in kubelet which in turns means that HostIPs will not be updated even if there is a node is assigned to this pod. +optional +patchStrategy=merge +patchMergeKey=ip +listType=atomic [optional]
init_container_statuses list[ContainerStatus] The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status [optional]
message str A human readable message indicating details about why the pod is in this condition. +optional [optional]
nominated_node_name str nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be scheduled right away as preemption victims receive their graceful termination periods. This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to give the resources on this node to a higher priority pod that is created after preemption. As a result, this field may be different than PodSpec.nodeName when the pod is scheduled. +optional [optional]
phase PodPhase [optional]
pod_ip str podIP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated. +optional [optional]
pod_i_ps list[PodIP] podIPs holds the IP addresses allocated to the pod. If this field is specified, the 0th entry must match the podIP field. Pods may be allocated at most 1 value for each of IPv4 and IPv6. This list is empty if no IPs have been allocated yet. +optional +patchStrategy=merge +patchMergeKey=ip [optional]
qos_class PodQOSClass [optional]
reason str A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted' +optional [optional]
resize PodResizeStatus [optional]
resource_claim_statuses list[PodResourceClaimStatus] Status of resource claims. +patchMergeKey=name +patchStrategy=merge,retainKeys +listType=map +listMapKey=name +featureGate=DynamicResourceAllocation +optional [optional]
start_time str RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod. +optional [optional]

[Back to Model list] [Back to API list] [Back to README]