Documentation ¶
Index ¶
- Constants
- Variables
- func AllContainersAreWindowsHostProcess(pod *v1.Pod) bool
- func BuildPodFullName(name, namespace string) string
- func ExpandContainerCommandAndArgs(container *v1.Container, envs []EnvVar) (command []string, args []string)
- func ExpandContainerCommandOnlyStatic(containerCommand []string, envs []v1.EnvVar) (command []string)
- func ExpandContainerVolumeMounts(mount v1.VolumeMount, envs []EnvVar) (string, error)
- func FilterEventRecorder(recorder record.EventRecorder) record.EventRecorder
- func GenerateContainerRef(pod *v1.Pod, container *v1.Container) (*v1.ObjectReference, error)
- func GetContainerSpec(pod *v1.Pod, containerName string) *v1.Container
- func GetPodFullName(pod *v1.Pod) string
- func HasPrivilegedContainer(pod *v1.Pod) bool
- func HasWindowsHostProcessContainer(pod *v1.Pod) bool
- func HashContainer(container *v1.Container) uint64
- func IsHostNetworkPod(pod *v1.Pod) bool
- func ParsePodFullName(podFullName string) (string, string, error)
- func ShouldContainerBeRestarted(container *v1.Container, pod *v1.Pod, podStatus *PodStatus) bool
- type Annotation
- type Cache
- type Container
- type CtrID
- type DeviceInfo
- type DockerID
- type EnvVar
- type GC
- type GCPolicy
- type HandlerRunner
- type Image
- type ImageService
- type ImageSpec
- type ImageStats
- type Mount
- type OSInterface
- type Option
- type Pod
- type PodStatus
- type PodSyncResult
- type Pods
- type PortMapping
- type RealOS
- func (RealOS) Chmod(path string, perm os.FileMode) error
- func (RealOS) Chtimes(path string, atime time.Time, mtime time.Time) error
- func (RealOS) Create(path string) (*os.File, error)
- func (RealOS) Glob(pattern string) ([]string, error)
- func (RealOS) Hostname() (name string, err error)
- func (RealOS) MkdirAll(path string, perm os.FileMode) error
- func (RealOS) Open(name string) (*os.File, error)
- func (RealOS) OpenFile(name string, flag int, perm os.FileMode) (*os.File, error)
- func (RealOS) Pipe() (r *os.File, w *os.File, err error)
- func (RealOS) ReadDir(dirname string) ([]os.DirEntry, error)
- func (RealOS) Remove(path string) error
- func (RealOS) RemoveAll(path string) error
- func (RealOS) Rename(oldpath, newpath string) error
- func (RealOS) Stat(path string) (os.FileInfo, error)
- func (RealOS) Symlink(oldname string, newname string) error
- type RunContainerOptions
- type Runtime
- type RuntimeCache
- type RuntimeCondition
- type RuntimeConditionType
- type RuntimeHelper
- type RuntimeStatus
- type SortContainerStatusesByCreationTime
- type SourcesReadyProvider
- type State
- type Status
- type SyncAction
- type SyncResult
- type TestRuntimeCache
- type Version
- type VolumeInfo
- type VolumeMap
Constants ¶
const ( // MaxPodTerminationMessageLogLength is the maximum bytes any one pod may have written // as termination message output across all containers. Containers will be evenly truncated // until output is below this limit. MaxPodTerminationMessageLogLength = 1024 * 12 // MaxContainerTerminationMessageLength is the upper bound any one container may write to // its termination message path. Contents above this length will be truncated. MaxContainerTerminationMessageLength = 1024 * 8 // MaxContainerTerminationMessageLogLength is the maximum bytes any one container will // have written to its termination message when the message is read from the logs. MaxContainerTerminationMessageLogLength = 1024 * 8 // MaxContainerTerminationMessageLogLines is the maximum number of previous lines of // log output that the termination message can contain. MaxContainerTerminationMessageLogLines = 200 )
Variables ¶
var ( // ErrRunContainer returned when runtime failed to start any of pod's container. ErrRunContainer = errors.New("RunContainerError") // ErrKillContainer returned when runtime failed to kill any of pod's containers. ErrKillContainer = errors.New("KillContainerError") // ErrCreatePodSandbox returned when runtime failed to create a sandbox for pod. ErrCreatePodSandbox = errors.New("CreatePodSandboxError") // ErrConfigPodSandbox returned when runetime failed to get pod sandbox config from pod. ErrConfigPodSandbox = errors.New("ConfigPodSandboxError") // ErrKillPodSandbox returned when runtime failed to stop pod's sandbox. ErrKillPodSandbox = errors.New("KillPodSandboxError") )
var ( // ErrContainerNotFound returned when a container in the given pod with the // given container name was not found, amongst those managed by the kubelet. ErrContainerNotFound = errors.New("no matching container") )
var ErrCrashLoopBackOff = errors.New("CrashLoopBackOff")
ErrCrashLoopBackOff returned when a container Terminated and Kubelet is backing off the restart.
var ImplicitContainerPrefix = "implicitly required container "
ImplicitContainerPrefix is a container name prefix that will indicate that container was started implicitly (like the pod infra container).
Functions ¶
func AllContainersAreWindowsHostProcess ¶
AllContainersAreWindowsHostProcess returns true if all containers in a pod are HostProcess containers.
func BuildPodFullName ¶
BuildPodFullName builds the pod full name from pod name and namespace.
func ExpandContainerCommandAndArgs ¶
func ExpandContainerCommandAndArgs(container *v1.Container, envs []EnvVar) (command []string, args []string)
ExpandContainerCommandAndArgs expands the given Container's command by replacing variable references `with the values of given EnvVar.
func ExpandContainerCommandOnlyStatic ¶
func ExpandContainerCommandOnlyStatic(containerCommand []string, envs []v1.EnvVar) (command []string)
ExpandContainerCommandOnlyStatic substitutes only static environment variable values from the container environment definitions. This does *not* include valueFrom substitutions. TODO: callers should use ExpandContainerCommandAndArgs with a fully resolved list of environment.
func ExpandContainerVolumeMounts ¶
func ExpandContainerVolumeMounts(mount v1.VolumeMount, envs []EnvVar) (string, error)
ExpandContainerVolumeMounts expands the subpath of the given VolumeMount by replacing variable references with the values of given EnvVar.
func FilterEventRecorder ¶
func FilterEventRecorder(recorder record.EventRecorder) record.EventRecorder
FilterEventRecorder creates an event recorder to record object's event except implicitly required container's, like infra container.
func GenerateContainerRef ¶
GenerateContainerRef returns an *v1.ObjectReference which references the given container within the given pod. Returns an error if the reference can't be constructed or the container doesn't actually belong to the pod.
func GetContainerSpec ¶
GetContainerSpec gets the container spec by containerName.
func GetPodFullName ¶
GetPodFullName returns a name that uniquely identifies a pod.
func HasPrivilegedContainer ¶
HasPrivilegedContainer returns true if any of the containers in the pod are privileged.
func HasWindowsHostProcessContainer ¶
HasWindowsHostProcessContainer returns true if any of the containers in a pod are HostProcess containers.
func HashContainer ¶
HashContainer returns the hash of the container. It is used to compare the running container with its desired spec. Note: remember to update hashValues in container_hash_test.go as well.
func IsHostNetworkPod ¶
IsHostNetworkPod returns whether the host networking requested for the given Pod. Pod must not be nil.
func ParsePodFullName ¶
ParsePodFullName parsed the pod full name.
Types ¶
type Annotation ¶
Annotation represents an annotation.
type Cache ¶
type Cache interface { Get(types.UID) (*PodStatus, error) Set(types.UID, *PodStatus, error, time.Time) // GetNewerThan is a blocking call that only returns the status // when it is newer than the given time. GetNewerThan(types.UID, time.Time) (*PodStatus, error) Delete(types.UID) UpdateTime(time.Time) }
Cache stores the PodStatus for the pods. It represents *all* the visible pods/containers in the container runtime. All cache entries are at least as new or newer than the global timestamp (set by UpdateTime()), while individual entries may be slightly newer than the global timestamp. If a pod has no states known by the runtime, Cache returns an empty PodStatus object with ID populated.
Cache provides two methods to retrieve the PodStatus: the non-blocking Get() and the blocking GetNewerThan() method. The component responsible for populating the cache is expected to call Delete() to explicitly free the cache entries.
type Container ¶
type Container struct { // The ID of the container, used by the container runtime to identify // a container. ID CtrID // The name of the container, which should be the same as specified by // v1.Container. Name string // The image name of the container, this also includes the tag of the image, // the expected form is "NAME:TAG". Image string // The id of the image used by the container. ImageID string // Hash of the container, used for comparison. Optional for containers // not managed by kubelet. Hash uint64 // State is the state of the container. State State }
Container provides the runtime information for a container, such as ID, hash, state of the container.
type CtrID ¶
type CtrID struct { // The type of the container runtime. e.g. 'docker'. Type string // The identification of the container, this is comsumable by // the underlying container runtime. (Note that the container // runtime interface still takes the whole struct as input). ID string }
CtrID is a type that identifies a container.
func BuildContainerID ¶
BuildContainerID returns the CtrID given type and id.
func ParseContainerID ¶
ParseContainerID is a convenience method for creating a CtrID from an ID string.
func (*CtrID) MarshalJSON ¶
MarshalJSON formats a given CtrID into a byte array.
func (*CtrID) ParseString ¶
ParseString converts given string into CtrID
func (*CtrID) UnmarshalJSON ¶
UnmarshalJSON parses CtrID from a given array of bytes.
type DeviceInfo ¶
type DeviceInfo struct { // Path on host for mapping PathOnHost string // Path in Container to map PathInContainer string // Cgroup permissions Permissions string }
DeviceInfo contains information about the device.
type DockerID ¶
type DockerID string
DockerID is an ID of docker container. It is a type to make it clear when we're working with docker container Ids
func (DockerID) ContainerID ¶
CtrID converts DockerID into a CtrID.
type GC ¶
type GC interface { // Garbage collect containers. GarbageCollect(ctx context.Context) error // Deletes all unused containers, including containers belonging to pods that are terminated but not deleted DeleteAllUnusedContainers(ctx context.Context) error }
GC manages garbage collection of dead containers.
Implementation is thread-compatible.
func NewContainerGC ¶
func NewContainerGC(runtime Runtime, policy GCPolicy, sourcesReadyProvider SourcesReadyProvider) (GC, error)
NewContainerGC creates a new instance of GC with the specified policy.
type GCPolicy ¶
type GCPolicy struct { // Minimum age at which a container can be garbage collected, zero for no limit. MinAge time.Duration // Max number of dead containers any single pod (UID, container name) pair is // allowed to have, less than zero for no limit. MaxPerPodContainer int // Max number of total dead containers, less than zero for no limit. MaxContainers int }
GCPolicy specifies a policy for garbage collecting containers.
type HandlerRunner ¶
type HandlerRunner interface {
Run(containerID CtrID, pod *v1.Pod, container *v1.Container, handler *v1.LifecycleHandler) (string, error)
}
HandlerRunner runs a lifecycle handler for a container.
type Image ¶
type Image struct { // ID of the image. ID string // Other names by which this image is known. RepoTags []string // Digests by which this image is known. RepoDigests []string // The size of the image in bytes. Size int64 // ImageSpec for the image which include annotations. Spec ImageSpec // Pin for preventing garbage collection Pinned bool }
Image contains basic information about a container image.
type ImageService ¶
type ImageService interface { // PullImage pulls an image from the network to local storage using the supplied // auth if necessary. It returns a reference (digest or ID) to the pulled image. PullImage(ctx context.Context, image ImageSpec, auth *credentialprovider.AuthConfig, podSandboxConfig *runtimeapi.PodSandboxConfig) (string, error) // GetImageRef gets the reference (digest or ID) of the image which has already been in // the local storage. It returns ("", nil) if the image isn't in the local storage. GetImageRef(ctx context.Context, image ImageSpec) (string, error) // ListImages gets all images currently on the machine. ListImages(ctx context.Context) ([]Image, error) // RemoveImage removes the specified image. RemoveImage(ctx context.Context, image ImageSpec) error // ImageStats returns Image statistics. ImageStats(ctx context.Context) (*ImageStats, error) }
ImageService interfaces allows to work with image service.
type ImageSpec ¶
type ImageSpec struct { // ID of the image. Image string // The annotations for the image. // This should be passed to CRI during image pulls and returned when images are listed. Annotations []Annotation }
ImageSpec is an internal representation of an image. Currently, it wraps the value of a Container's Image field, but in the future it will include more detailed information about the different image types.
type ImageStats ¶
type ImageStats struct { // Total amount of storage consumed by existing images. TotalStorageBytes uint64 }
ImageStats contains statistics about all the images currently available.
type Mount ¶
type Mount struct { // Name of the volume mount. // TODO(yifan): Remove this field, as this is not representing the unique name of the mount, // but the volume name only. Name string // Path of the mount within the container. ContainerPath string // Path of the mount on the host. HostPath string // Whether the mount is read-only. ReadOnly bool // Whether the mount needs SELinux relabeling SELinuxRelabel bool // Requested propagation mode Propagation runtimeapi.MountPropagation }
Mount represents a volume mount.
type OSInterface ¶
type OSInterface interface { MkdirAll(path string, perm os.FileMode) error Symlink(oldname string, newname string) error Stat(path string) (os.FileInfo, error) Remove(path string) error RemoveAll(path string) error Create(path string) (*os.File, error) Chmod(path string, perm os.FileMode) error Hostname() (name string, err error) Chtimes(path string, atime time.Time, mtime time.Time) error Pipe() (r *os.File, w *os.File, err error) ReadDir(dirname string) ([]os.DirEntry, error) Glob(pattern string) ([]string, error) Open(name string) (*os.File, error) OpenFile(name string, flag int, perm os.FileMode) (*os.File, error) Rename(oldpath, newpath string) error }
OSInterface collects system level operations that need to be mocked out during tests.
type Option ¶
type Option func(Runtime)
Option is a functional option type for Runtime, useful for completely optional settings.
type Pod ¶
type Pod struct { // The ID of the pod, which can be used to retrieve a particular pod // from the pod list returned by GetPods(). ID types.UID // The name and namespace of the pod, which is readable by human. Name string Namespace string // List of containers that belongs to this pod. It may contain only // running containers, or mixed with dead ones (when GetPods(true)). Containers []*Container // List of sandboxes associated with this pod. The sandboxes are converted // to Container temporarily to avoid substantial changes to other // components. This is only populated by kuberuntime. // TODO: use the runtimeApi.PodSandbox type directly. Sandboxes []*Container }
Pod is a group of containers.
func ConvertAPIPodToRunningPod ¶
ConvertPodStatusToRunningPod returns Pod given PodStatus and container runtime string. TODO(random-liu): Convert PodStatus to running Pod, should be deprecated soon
func ConvertPodStatusToRunningPod ¶
ConvertPodStatusToRunningPod returns Pod given PodStatus and container runtime string. TODO(random-liu): Convert PodStatus to running Pod, should be deprecated soon
func (*Pod) FindContainerByID ¶
FindContainerByID returns a container in the pod with the given CtrID.
func (*Pod) FindContainerByName ¶
FindContainerByName returns a container in the pod with the given name. When there are multiple containers with the same name, the first match will be returned.
func (*Pod) FindSandboxByID ¶
FindSandboxByID returns a sandbox in the pod with the given CtrID.
type PodStatus ¶
type PodStatus struct { // ID of the pod. ID types.UID // Name of the pod. Name string // Namespace of the pod. Namespace string // All IPs assigned to this pod IPs []string // Status of containers in the pod. ContainerStatuses []*Status // Status of the pod sandbox. // Only for kuberuntime now, other runtime may keep it nil. SandboxStatuses []*runtimeapi.PodSandboxStatus }
PodStatus represents the status of the pod and its containers. v1.PodStatus can be derived from examining PodStatus and v1.Pod.
func (*PodStatus) FindContainerStatusByName ¶
FindContainerStatusByName returns container status in the pod status with the given name. When there are multiple containers' statuses with the same name, the first match will be returned.
func (*PodStatus) GetRunningContainerStatuses ¶
GetRunningContainerStatuses returns container status of all the running containers in a pod
type PodSyncResult ¶
type PodSyncResult struct { // Result of different sync actions SyncResults []*SyncResult // Error encountered in SyncPod() and KillPod() that is not already included in SyncResults SyncError error }
PodSyncResult is the summary result of SyncPod() and KillPod()
func (*PodSyncResult) AddPodSyncResult ¶
func (p *PodSyncResult) AddPodSyncResult(result PodSyncResult)
AddPodSyncResult merges a PodSyncResult to current one
func (*PodSyncResult) AddSyncResult ¶
func (p *PodSyncResult) AddSyncResult(result ...*SyncResult)
AddSyncResult adds multiple SyncResult to current PodSyncResult
func (*PodSyncResult) Error ¶
func (p *PodSyncResult) Error() error
Error returns an error summarizing all the errors in PodSyncResult
func (*PodSyncResult) Fail ¶
func (p *PodSyncResult) Fail(err error)
Fail fails the PodSyncResult with an error occurred in SyncPod() and KillPod() itself
type Pods ¶
type Pods []*Pod
Pods represents the list of pods
func (Pods) FindPod ¶
FindPod combines FindPodByID and FindPodByFullName, it finds and returns a pod in the pod list either by the full name or the pod ID. It will return an empty pod if not found.
func (Pods) FindPodByFullName ¶
FindPodByFullName finds and returns a pod in the pod list by the full name. It will return an empty pod if not found.
type PortMapping ¶
type PortMapping struct { // Protocol of the port mapping. Protocol v1.Protocol // The port number within the container. ContainerPort int // The port number on the host. HostPort int // The host IP. HostIP string }
PortMapping contains information about the port mapping.
func MakePortMappings ¶
func MakePortMappings(container *v1.Container) (ports []PortMapping)
MakePortMappings creates internal port mapping from api port mapping.
type RealOS ¶
type RealOS struct{}
RealOS is used to dispatch the real system level operations.
func (RealOS) Glob ¶
Glob will call filepath.Glob to return the names of all files matching pattern.
type RunContainerOptions ¶
type RunContainerOptions struct { // The environment variables list. Envs []EnvVar // The mounts for the containers. Mounts []Mount // The host devices mapped into the containers. Devices []DeviceInfo // The annotations for the container // These annotations are generated by other components (i.e., // not users). Currently, only device plugins populate the annotations. Annotations []Annotation // If the container has specified the TerminationMessagePath, then // this directory will be used to create and mount the log file to // container.TerminationMessagePath PodContainerDir string // The type of container rootfs ReadOnly bool // hostname for pod containers Hostname string // EnableHostUserNamespace sets userns=host when users request host namespaces (pid, ipc, net), // are using non-namespaced capabilities (mknod, sys_time, sys_module), the pod contains a privileged container, // or using host path volumes. // This should only be enabled when the container runtime is performing user remapping AND if the // experimental behavior is desired. EnableHostUserNamespace bool }
RunContainerOptions specify the options which are necessary for running containers
type Runtime ¶
type Runtime interface { // Type returns the type of the container runtime. Type() string // Version returns the version information of the container runtime. Version(ctx context.Context) (Version, error) // SyncPod syncs the running pod into the desired pod. SyncPod(ctx context.Context, pod *v1.Pod, podStatus *PodStatus, auth *credentialprovider.AuthConfig, backOff *flowcontrol.Backoff) PodSyncResult // KillPod kills all the containers of a pod. Pod may be nil, running pod must not be. // gracePeriodOverride if specified allows the caller to override the pod default grace period. // only hard kill paths are allowed to specify a gracePeriodOverride in the kubelet in order to not corrupt user data. // it is useful when doing SIGKILL for hard eviction scenarios, or max grace period during soft eviction scenarim.osInterface. KillPod(ctx context.Context, pod *v1.Pod, runningPod Pod, gracePeriodOverride *int64) error // GetPodStatus retrieves the status of the pod, including the // information of all containers in the pod that are visible in Runtime. GetPodStatus(ctx context.Context, uid types.UID, name, namespace string) (*PodStatus, error) // GetPods returns a list of containers grouped by pods. The boolean parameter // specifies whether the runtime returns all containers including those already // exited and dead containers (used for garbage collection). GetPods(ctx context.Context, all bool) ([]*Pod, error) // GarbageCollect removes dead containers using the specified container gc policy // If allSourcesReady is not true, it means that kubelet doesn't have the // complete list of pods from all available sources (e.g., apiserver, http, // file). In this case, garbage collector should refrain itself from aggressive // behavior such as removing all containers of unrecognized pods (yet). // If evictNonDeletedPods is set to true, containers and sandboxes belonging to pods // that are terminated, but not deleted will be evicted. Otherwise, only deleted pods // will be GC'd. // TODO: Revisit this method and make it cleaner. GarbageCollect(ctx context.Context, gcPolicy GCPolicy, allSourcesReady bool, evictNonDeletedPods bool) error ImageService }
type RuntimeCache ¶
type RuntimeCache interface { GetPods(context.Context) ([]*Pod, error) ForceUpdateIfOlder(context.Context, time.Time) error }
RuntimeCache is in interface for obtaining cached Pods.
func NewRuntimeCache ¶
func NewRuntimeCache(getter podsGetter) (RuntimeCache, error)
NewRuntimeCache creates a container runtime cache.
type RuntimeCondition ¶
type RuntimeCondition struct { // Type of runtime condition. Type RuntimeConditionType // Status of the condition, one of true/false. Status bool // Reason is brief reason for the condition's last transition. Reason string // Message is human readable message indicating details about last transition. Message string }
RuntimeCondition contains condition information for the runtime.
func (*RuntimeCondition) String ¶
func (c *RuntimeCondition) String() string
String formats the runtime condition into human readable string.
type RuntimeConditionType ¶
type RuntimeConditionType string
RuntimeConditionType is the types of required runtime conditions.
const ( // RuntimeReady means the runtime is up and ready to accept basic containers. RuntimeReady RuntimeConditionType = "RuntimeReady" // NetworkReady means the runtime network is up and ready to accept containers which require network. NetworkReady RuntimeConditionType = "NetworkReady" )
type RuntimeHelper ¶
type RuntimeHelper interface { GenerateRunContainerOptions(pod *v1.Pod, container *v1.Container, podIP string, podIPs []string) (contOpts *RunContainerOptions, cleanupAction func(), err error) GetPodDNS(pod *v1.Pod) (dnsConfig *runtimeapi.DNSConfig, err error) // GetPodCgroupParent returns the CgroupName identifier, and its literal cgroupfs form on the host // of a pod. GetPodCgroupParent(pod *v1.Pod) string GetPodDir(podUID types.UID) string GeneratePodHostNameAndDomain(pod *v1.Pod) (hostname string, hostDomain string, err error) // GetExtraSupplementalGroupsForPod returns a list of the extra // supplemental groups for the Pod. These extra supplemental groups come // from annotations on persistent volumes that the pod depends on. GetExtraSupplementalGroupsForPod(pod *v1.Pod) []int64 }
RuntimeHelper wraps kubelet to make container runtime able to get necessary informations like the RunContainerOptions, DNS settings, Host IP.
type RuntimeStatus ¶
type RuntimeStatus struct { // Conditions is an array of current observed runtime conditions. Conditions []RuntimeCondition }
RuntimeStatus contains the status of the runtime.
func (*RuntimeStatus) GetRuntimeCondition ¶
func (r *RuntimeStatus) GetRuntimeCondition(t RuntimeConditionType) *RuntimeCondition
GetRuntimeCondition gets a specified runtime condition from the runtime status.
func (*RuntimeStatus) String ¶
func (r *RuntimeStatus) String() string
String formats the runtime status into human readable string.
type SortContainerStatusesByCreationTime ¶
type SortContainerStatusesByCreationTime []*Status
SortContainerStatusesByCreationTime sorts the container statuses by creation time.
func (SortContainerStatusesByCreationTime) Len ¶
func (s SortContainerStatusesByCreationTime) Len() int
func (SortContainerStatusesByCreationTime) Less ¶
func (s SortContainerStatusesByCreationTime) Less(i, j int) bool
func (SortContainerStatusesByCreationTime) Swap ¶
func (s SortContainerStatusesByCreationTime) Swap(i, j int)
type SourcesReadyProvider ¶
type SourcesReadyProvider interface { // AllReady returns true if the currently configured sources have all been seen. AllReady() bool }
SourcesReadyProvider knows how to determine if configuration sources are ready
type State ¶
type State string
State represents the state of a container
const ( // ContainerStateCreated indicates a container that has been created (e.g. with docker create) but not started. ContainerStateCreated State = "created" // ContainerStateRunning indicates a currently running container. ContainerStateRunning State = "running" // ContainerStateExited indicates a container that ran and completed ("stopped" in other contexts, although a created container is technically also "stopped"). ContainerStateExited State = "exited" // ContainerStateUnknown encompasses all the states that we currently don't care about (like restarting, paused, dead). ContainerStateUnknown State = "unknown" )
func SandboxToContainerState ¶
func SandboxToContainerState(state runtimeapi.PodSandboxState) State
SandboxToContainerState converts runtimeapi.PodSandboxState to pkgcontainer.State. This is only needed because we need to return sandboxes as if they were pkgcontainer.Containers to avoid substantial changes to PLEG. TODO: Remove this once it becomes obsolete.
type Status ¶
type Status struct { // ID of the container. ID CtrID // Name of the container. Name string // Status of the container. State State // Creation time of the container. CreatedAt time.Time // Start time of the container. StartedAt time.Time // Finish time of the container. FinishedAt time.Time // Exit code of the container. ExitCode int // Name of the image, this also includes the tag of the image, // the expected form is "NAME:TAG". Image string // ID of the image. ImageID string // Hash of the container, used for comparison. Hash uint64 // Number of times that the container has been restarted. RestartCount int // A string explains why container is in such a status. Reason string // Message written by the container before exiting (stored in // TerminationMessagePath). Message string }
Status represents the status of a container.
type SyncAction ¶
type SyncAction string
SyncAction indicates different kind of actions in SyncPod() and KillPod(). Now there are only actions about start/kill container and setup/teardown network.
const ( // StartContainer action StartContainer SyncAction = "StartContainer" // KillContainer action KillContainer SyncAction = "KillContainer" // SetupNetwork action SetupNetwork SyncAction = "SetupNetwork" // TeardownNetwork action TeardownNetwork SyncAction = "TeardownNetwork" // InitContainer action InitContainer SyncAction = "InitContainer" // CreatePodSandbox action CreatePodSandbox SyncAction = "CreatePodSandbox" // ConfigPodSandbox action ConfigPodSandbox SyncAction = "ConfigPodSandbox" // KillPodSandbox action KillPodSandbox SyncAction = "KillPodSandbox" )
type SyncResult ¶
type SyncResult struct { // The associated action of the result Action SyncAction // The target of the action, now the target can only be: // * Container: Target should be container name // * Network: Target is useless now, we just set it as pod full name now Target interface{} // Brief error reason Error error // Human readable error reason Message string }
SyncResult is the result of sync action.
func NewSyncResult ¶
func NewSyncResult(action SyncAction, target interface{}) *SyncResult
NewSyncResult generates new SyncResult with specific Action and Target
func (*SyncResult) Fail ¶
func (r *SyncResult) Fail(err error, msg string)
Fail fails the SyncResult with specific error and message
type TestRuntimeCache ¶
type TestRuntimeCache struct {
// contains filtered or unexported fields
}
TestRuntimeCache embeds runtimeCache with some additional methods for testing. It must be declared in the container package to have visibility to runtimeCache. It cannot be in a "..._test.go" file in order for runtime_cache_test.go to have cross-package visibility to it. (cross-package declarations in test files cannot be used from dot imports if this package is vendored)
func NewTestRuntimeCache ¶
func NewTestRuntimeCache(getter podsGetter) *TestRuntimeCache
NewTestRuntimeCache creates a new instance of TestRuntimeCache.
func (*TestRuntimeCache) ForceUpdateIfOlder ¶
func (*TestRuntimeCache) GetCachedPods ¶
func (r *TestRuntimeCache) GetCachedPods() []*Pod
GetCachedPods returns the cached pods.
func (*TestRuntimeCache) GetPods ¶
GetPods returns the cached pods if they are not outdated; otherwise, it retrieves the latest pods and return them.
func (*TestRuntimeCache) UpdateCacheWithLock ¶
func (r *TestRuntimeCache) UpdateCacheWithLock() error
UpdateCacheWithLock updates the cache with the lock.
type Version ¶
type Version interface { // Compare compares two versions of the runtime. On success it returns -1 // if the version is less than the other, 1 if it is greater than the other, // or 0 if they are equal. Compare(other string) (int, error) // String returns a string that represents the version. String() string }
Version interface allow to consume the runtime versions - compare and format to string.
type VolumeInfo ¶
type VolumeInfo struct { // Mounter is the volume's mounter Mounter volume.Mounter // BlockVolumeMapper is the Block volume's mapper BlockVolumeMapper volume.BlockVolumeMapper // SELinuxLabeled indicates whether this volume has had the // pod's SELinux label applied to it or not SELinuxLabeled bool // Whether the volume permission is set to read-only or not // This value is passed from volume.spec ReadOnly bool // Inner volume spec name, which is the PV name if used, otherwise // it is the same as the outer volume spec name. InnerVolumeSpecName string }
VolumeInfo contains information about the volume.