Name: PodStatus

Hold status information of a pod

Data Structure
{
   "typeId": "com.tintri.api.rest.v310.dto.domain.beans.k8s.PodStatus",
   "age": <String>,
   "ageInMillis": <Number>,
   "allContainerCount": <Number>,
   "hostIp": <String>,
   "phase": <String>,
   "podIp": <String>,
   "qosClass": <String>,
   "readyContainerCount": <Number>,
   "restartCount": <Number>,
   "startTime": DateTime,
   "conditions": [Condition],
   "podIps": [<String>],
}

Elements
NameTypeDescription
conditionsxsd:list[Condition]Conditions associated with the pod
podIpsxsd:list[xsd:string]All IPs assigned to the pod

Attributes
NameTypeDescription
agexsd:stringAge of pod since it was created and scheduled. E.g. 42s (42 seconds) 20m (20 minutes) 18h (18 hours) 100d (100 days)
ageInMillisxsd:longAge of pod in milliseconds since it was created and scheduled.
allContainerCountxsd:intNumber of total containers assigned to this pod. The count includes both running and terminated containers.
hostIpxsd:stringIP address of the worker node to which the pod is assigned
phasexsd:stringPhase of pod status. E.g. 'Running'
podIpxsd:stringPod's primary IP address
qosClassxsd:stringQoS class of the pod
readyContainerCountxsd:intNumber of ready containers assigned to this pod.
restartCountxsd:intNumber of times containers assigned to this pod have been restarted. The count is aggregated across all containers assigned to this pod.
startTimeDateTimePod's start time