[][src]Module kubelet::container

container is a collection of utilities surrounding the Kubernetes container API.

Structs

Container

A Kubernetes Container

Handle

Represents a handle to a running "container" (whatever that might be). This can be used on its own, however, it is generally better to use it as a part of a [pod::Handle], which manages a group of containers in a Kubernetes Pod

Enums

ContainerKey

Identifies a container by name and phase.

PullPolicy

Specifies how the store should check for module updates

Status

Status is a simplified version of the Kubernetes container status for use in providers. It allows for simple creation of the current status of a "container" (a running wasm process) without worrying about a bunch of Options. Use the Status::to_kubernetes method for converting it to a Kubernetes API container status

Traits

ContainerMapByName

Provides methods for accessing ContainerMap elements by name.

Type Definitions

ContainerMap

A HashMap where the keys are ContainerKeys.

HandleMap

A map from containers to container handles.