# Functions
IsContainerInState returns true if container is in give state, otherwise false.
IsNodeInCondition returns true if node's condition given as an argument has status "True".
# Constants
ContainerStateTerminated indicates that container began execution and then either ran to completion or failed for some reason.
ContainerStateWaiting represents a state when container requires some operations being done in order to complete start up.
PullAlways means that kubelet always attempts to pull the latest image.
PullIfNotPresent means that kubelet pulls if the image isn't present on disk.
PullNever means that kubelet never pulls an image, but only uses a local image.
# Structs
NodeFileSystemSummary holds a summary of Node's filesystem.
NodeSummary holds summary of the Node.
NodeSummaryNode holds information about Node inside Node's summary.
# Type aliases
ContainerState describes container's state - waiting, running, terminated.
PullPolicy describes a policy for if/when to pull a container image.