Versions in this module Expand all Collapse all v1 v1.16.3 Oct 23, 2019 Changes in this version + func NewRemoteImageService(endpoint string, connectionTimeout time.Duration) (internalapi.ImageManagerService, error) + func NewRemoteRuntimeService(endpoint string, connectionTimeout time.Duration) (internalapi.RuntimeService, error) + type RemoteImageService struct + func (r *RemoteImageService) ImageFsInfo() ([]*runtimeapi.FilesystemUsage, error) + func (r *RemoteImageService) ImageStatus(image *runtimeapi.ImageSpec) (*runtimeapi.Image, error) + func (r *RemoteImageService) ListImages(filter *runtimeapi.ImageFilter) ([]*runtimeapi.Image, error) + func (r *RemoteImageService) PullImage(image *runtimeapi.ImageSpec, auth *runtimeapi.AuthConfig, ...) (string, error) + func (r *RemoteImageService) RemoveImage(image *runtimeapi.ImageSpec) error + type RemoteRuntimeService struct + func (r *RemoteRuntimeService) Attach(req *runtimeapi.AttachRequest) (*runtimeapi.AttachResponse, error) + func (r *RemoteRuntimeService) ContainerStats(containerID string) (*runtimeapi.ContainerStats, error) + func (r *RemoteRuntimeService) ContainerStatus(containerID string) (*runtimeapi.ContainerStatus, error) + func (r *RemoteRuntimeService) CreateContainer(podSandBoxID string, config *runtimeapi.ContainerConfig, ...) (string, error) + func (r *RemoteRuntimeService) Exec(req *runtimeapi.ExecRequest) (*runtimeapi.ExecResponse, error) + func (r *RemoteRuntimeService) ExecSync(containerID string, cmd []string, timeout time.Duration) (stdout []byte, stderr []byte, err error) + func (r *RemoteRuntimeService) ListContainerStats(filter *runtimeapi.ContainerStatsFilter) ([]*runtimeapi.ContainerStats, error) + func (r *RemoteRuntimeService) ListContainers(filter *runtimeapi.ContainerFilter) ([]*runtimeapi.Container, error) + func (r *RemoteRuntimeService) ListPodSandbox(filter *runtimeapi.PodSandboxFilter) ([]*runtimeapi.PodSandbox, error) + func (r *RemoteRuntimeService) PodSandboxStatus(podSandBoxID string) (*runtimeapi.PodSandboxStatus, error) + func (r *RemoteRuntimeService) PortForward(req *runtimeapi.PortForwardRequest) (*runtimeapi.PortForwardResponse, error) + func (r *RemoteRuntimeService) RemoveContainer(containerID string) error + func (r *RemoteRuntimeService) RemovePodSandbox(podSandBoxID string) error + func (r *RemoteRuntimeService) ReopenContainerLog(containerID string) error + func (r *RemoteRuntimeService) RunPodSandbox(config *runtimeapi.PodSandboxConfig, runtimeHandler string) (string, error) + func (r *RemoteRuntimeService) StartContainer(containerID string) error + func (r *RemoteRuntimeService) Status() (*runtimeapi.RuntimeStatus, error) + func (r *RemoteRuntimeService) StopContainer(containerID string, timeout int64) error + func (r *RemoteRuntimeService) StopPodSandbox(podSandBoxID string) error + func (r *RemoteRuntimeService) UpdateContainerResources(containerID string, resources *runtimeapi.LinuxContainerResources) error + func (r *RemoteRuntimeService) UpdateRuntimeConfig(runtimeConfig *runtimeapi.RuntimeConfig) error + func (r *RemoteRuntimeService) Version(apiVersion string) (*runtimeapi.VersionResponse, error)