Versions in this module Expand all Collapse all v0 v0.1.0 Jun 29, 2017 Changes in this version + func ContainerToStoreUpdateFunc(u ContainerUpdateFunc) store.UpdateFunc + func IsNotExistError(err error) bool + type ContainerMetadata struct + Config *runtime.ContainerConfig + CreatedAt int64 + ExitCode int32 + FinishedAt int64 + ID string + ImageRef string + Message string + Name string + Pid uint32 + Reason string + Removing bool + SandboxID string + Spec *runtimespec.Spec + StartedAt int64 + func (c *ContainerMetadata) State() runtime.ContainerState + type ContainerStore interface + Create func(ContainerMetadata) error + Delete func(string) error + Get func(string) (*ContainerMetadata, error) + List func() ([]*ContainerMetadata, error) + Update func(string, ContainerUpdateFunc) error + func NewContainerStore(store store.MetadataStore) ContainerStore + type ContainerUpdateFunc func(ContainerMetadata) (ContainerMetadata, error) + type ImageMetadata struct + ChainID string + Config *imagespec.ImageConfig + ID string + RepoDigests []string + RepoTags []string + Size int64 + type ImageMetadataStore interface + Create func(ImageMetadata) error + Delete func(string) error + Get func(string) (*ImageMetadata, error) + List func() ([]*ImageMetadata, error) + Update func(string, ImageMetadataUpdateFunc) error + func NewImageMetadataStore(store store.MetadataStore) ImageMetadataStore + type ImageMetadataUpdateFunc func(ImageMetadata) (ImageMetadata, error) + type SandboxMetadata struct + Config *runtime.PodSandboxConfig + CreatedAt int64 + ID string + Name string + NetNS string + Pid uint32 + type SandboxStore interface + Create func(SandboxMetadata) error + Delete func(string) error + Get func(string) (*SandboxMetadata, error) + List func() ([]*SandboxMetadata, error) + Update func(string, SandboxUpdateFunc) error + func NewSandboxStore(store store.MetadataStore) SandboxStore + type SandboxUpdateFunc func(SandboxMetadata) (SandboxMetadata, error) v0.1.0-alpha.1 Jun 22, 2017