varlinkapi

package
v0.8.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 24, 2018 License: Apache-2.0 Imports: 35 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func New

func New(cli *cli.Context, runtime *libpod.Runtime) *iopodman.VarlinkInterface

New creates a new varlink client

Types

type LibpodAPI

type LibpodAPI struct {
	Cli *cli.Context
	iopodman.VarlinkInterface
	Runtime *libpod.Runtime
}

LibpodAPI is the basic varlink struct for libpod

func (*LibpodAPI) AttachToContainer

func (i *LibpodAPI) AttachToContainer(call iopodman.VarlinkCall) error

AttachToContainer ... TODO: DO we also want a different one for websocket?

func (*LibpodAPI) BuildImage

func (i *LibpodAPI) BuildImage(call iopodman.VarlinkCall, config iopodman.BuildInfo) error

BuildImage ...

func (*LibpodAPI) Commit added in v0.5.3

func (i *LibpodAPI) Commit(call iopodman.VarlinkCall, name, imageName string, changes []string, author, message string, pause bool, manifestType string) error

Commit ...

func (*LibpodAPI) CreateContainer

func (i *LibpodAPI) CreateContainer(call iopodman.VarlinkCall, config iopodman.Create) error

CreateContainer ...

func (*LibpodAPI) CreateImage

func (i *LibpodAPI) CreateImage(call iopodman.VarlinkCall) error

CreateImage ... TODO With Pull being added, should we skip Create?

func (*LibpodAPI) CreatePod added in v0.8.3

func (i *LibpodAPI) CreatePod(call iopodman.VarlinkCall, create iopodman.PodCreate) error

CreatePod ...

func (*LibpodAPI) DeleteStoppedContainers

func (i *LibpodAPI) DeleteStoppedContainers(call iopodman.VarlinkCall) error

DeleteStoppedContainers ...

func (*LibpodAPI) DeleteUnusedImages

func (i *LibpodAPI) DeleteUnusedImages(call iopodman.VarlinkCall) error

DeleteUnusedImages deletes any images that do not have containers associated with it. TODO Filters are not implemented

func (*LibpodAPI) ExportContainer

func (i *LibpodAPI) ExportContainer(call iopodman.VarlinkCall, name, path string) error

ExportContainer ...

func (*LibpodAPI) ExportImage

func (i *LibpodAPI) ExportImage(call iopodman.VarlinkCall, name, destination string, compress bool, tags []string) error

ExportImage exports an image to the provided destination destination must have the transport type!!

func (*LibpodAPI) GetAttachSockets added in v0.5.4

func (i *LibpodAPI) GetAttachSockets(call iopodman.VarlinkCall, name string) error

GetAttachSockets ...

func (*LibpodAPI) GetContainer added in v0.5.1

func (i *LibpodAPI) GetContainer(call iopodman.VarlinkCall, name string) error

GetContainer ...

func (*LibpodAPI) GetContainerLogs

func (i *LibpodAPI) GetContainerLogs(call iopodman.VarlinkCall, name string) error

GetContainerLogs ...

func (*LibpodAPI) GetContainerStats

func (i *LibpodAPI) GetContainerStats(call iopodman.VarlinkCall, name string) error

GetContainerStats ...

func (*LibpodAPI) GetImage added in v0.6.1

func (i *LibpodAPI) GetImage(call iopodman.VarlinkCall, name string) error

GetImage returns a single image in the form of a ImageInList

func (*LibpodAPI) GetInfo added in v0.5.2

func (i *LibpodAPI) GetInfo(call iopodman.VarlinkCall) error

GetInfo returns details about the podman host and its stores

func (*LibpodAPI) GetPod added in v0.8.3

func (i *LibpodAPI) GetPod(call iopodman.VarlinkCall, name string) error

GetPod ...

func (*LibpodAPI) GetPodStats added in v0.8.4

func (i *LibpodAPI) GetPodStats(call iopodman.VarlinkCall, name string) error

GetPodStats ...

func (*LibpodAPI) GetVersion

func (i *LibpodAPI) GetVersion(call iopodman.VarlinkCall) error

GetVersion ...

func (*LibpodAPI) HistoryImage

func (i *LibpodAPI) HistoryImage(call iopodman.VarlinkCall, name string) error

HistoryImage returns the history of the image's layers Requires an image or name

func (*LibpodAPI) ImportImage

func (i *LibpodAPI) ImportImage(call iopodman.VarlinkCall, source, reference, message string, changes []string) error

ImportImage imports an image from a tarball to the image store

func (*LibpodAPI) InspectContainer

func (i *LibpodAPI) InspectContainer(call iopodman.VarlinkCall, name string) error

InspectContainer ...

func (*LibpodAPI) InspectImage

func (i *LibpodAPI) InspectImage(call iopodman.VarlinkCall, name string) error

InspectImage returns an image's inspect information as a string that can be serialized. Requires an image ID or name

func (*LibpodAPI) InspectPod added in v0.8.3

func (i *LibpodAPI) InspectPod(call iopodman.VarlinkCall, name string) error

InspectPod ...

func (*LibpodAPI) KillContainer

func (i *LibpodAPI) KillContainer(call iopodman.VarlinkCall, name string, signal int64) error

KillContainer kills a running container. If you want to use the default SIGTERM signal, just send a -1 for the signal arg.

func (*LibpodAPI) KillPod added in v0.8.3

func (i *LibpodAPI) KillPod(call iopodman.VarlinkCall, name string, signal int64) error

KillPod kills the running containers in a pod. If you want to use the default SIGTERM signal, just send a -1 for the signal arg.

func (*LibpodAPI) ListContainerChanges

func (i *LibpodAPI) ListContainerChanges(call iopodman.VarlinkCall, name string) error

ListContainerChanges ...

func (*LibpodAPI) ListContainerProcesses

func (i *LibpodAPI) ListContainerProcesses(call iopodman.VarlinkCall, name string, opts []string) error

ListContainerProcesses ...

func (*LibpodAPI) ListContainers

func (i *LibpodAPI) ListContainers(call iopodman.VarlinkCall) error

ListContainers ...

func (*LibpodAPI) ListImages

func (i *LibpodAPI) ListImages(call iopodman.VarlinkCall) error

ListImages lists all the images in the store It requires no inputs.

func (*LibpodAPI) ListPods added in v0.8.3

func (i *LibpodAPI) ListPods(call iopodman.VarlinkCall) error

ListPods ...

func (*LibpodAPI) PauseContainer

func (i *LibpodAPI) PauseContainer(call iopodman.VarlinkCall, name string) error

PauseContainer ...

func (*LibpodAPI) PausePod added in v0.8.3

func (i *LibpodAPI) PausePod(call iopodman.VarlinkCall, name string) error

PausePod ...

func (*LibpodAPI) Ping

func (i *LibpodAPI) Ping(call iopodman.VarlinkCall) error

Ping returns a simple string "OK" response for clients to make sure the service is working.

func (*LibpodAPI) PullImage

func (i *LibpodAPI) PullImage(call iopodman.VarlinkCall, name string) error

PullImage pulls an image from a registry to the image store. TODO This implementation is incomplete

func (*LibpodAPI) PushImage

func (i *LibpodAPI) PushImage(call iopodman.VarlinkCall, name, tag string, tlsVerify bool) error

PushImage pushes an local image to registry TODO We need to add options for signing, credentials, tls, and multi-tag

func (*LibpodAPI) RemoveContainer

func (i *LibpodAPI) RemoveContainer(call iopodman.VarlinkCall, name string, force bool) error

RemoveContainer ...

func (*LibpodAPI) RemoveImage

func (i *LibpodAPI) RemoveImage(call iopodman.VarlinkCall, name string, force bool) error

RemoveImage accepts a image name or ID as a string and force bool to determine if it should remove the image even if being used by stopped containers

func (*LibpodAPI) RemovePod added in v0.8.3

func (i *LibpodAPI) RemovePod(call iopodman.VarlinkCall, name string, force bool) error

RemovePod ...

func (*LibpodAPI) RenameContainer

func (i *LibpodAPI) RenameContainer(call iopodman.VarlinkCall) error

RenameContainer ...

func (*LibpodAPI) ResizeContainerTty

func (i *LibpodAPI) ResizeContainerTty(call iopodman.VarlinkCall) error

ResizeContainerTty ...

func (*LibpodAPI) RestartContainer

func (i *LibpodAPI) RestartContainer(call iopodman.VarlinkCall, name string, timeout int64) error

RestartContainer ...

func (*LibpodAPI) RestartPod added in v0.8.3

func (i *LibpodAPI) RestartPod(call iopodman.VarlinkCall, name string) error

RestartPod ...

func (*LibpodAPI) SearchImage

func (i *LibpodAPI) SearchImage(call iopodman.VarlinkCall, name string, limit int64) error

SearchImage searches all registries configured in /etc/containers/registries.conf for an image Requires an image name and a search limit as int

func (*LibpodAPI) StartContainer

func (i *LibpodAPI) StartContainer(call iopodman.VarlinkCall, name string) error

StartContainer ...

func (*LibpodAPI) StartPod added in v0.8.3

func (i *LibpodAPI) StartPod(call iopodman.VarlinkCall, name string) error

StartPod ...

func (*LibpodAPI) StopContainer

func (i *LibpodAPI) StopContainer(call iopodman.VarlinkCall, name string, timeout int64) error

StopContainer ...

func (*LibpodAPI) StopPod added in v0.8.3

func (i *LibpodAPI) StopPod(call iopodman.VarlinkCall, name string) error

StopPod ...

func (*LibpodAPI) TagImage

func (i *LibpodAPI) TagImage(call iopodman.VarlinkCall, name, tag string) error

TagImage accepts an image name and tag as strings and tags an image in the local store.

func (*LibpodAPI) UnpauseContainer

func (i *LibpodAPI) UnpauseContainer(call iopodman.VarlinkCall, name string) error

UnpauseContainer ...

func (*LibpodAPI) UnpausePod added in v0.8.3

func (i *LibpodAPI) UnpausePod(call iopodman.VarlinkCall, name string) error

UnpausePod ...

func (*LibpodAPI) UpdateContainer

func (i *LibpodAPI) UpdateContainer(call iopodman.VarlinkCall) error

UpdateContainer ...

func (*LibpodAPI) WaitContainer

func (i *LibpodAPI) WaitContainer(call iopodman.VarlinkCall, name string) error

WaitContainer ...

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL