Documentation ¶
Index ¶
- func New(cli *cli.Context, runtime *libpod.Runtime) *iopodman.VarlinkInterface
- type LibpodAPI
- func (i *LibpodAPI) AttachToContainer(call iopodman.VarlinkCall) error
- func (i *LibpodAPI) BuildImage(call iopodman.VarlinkCall, config iopodman.BuildInfo) error
- func (i *LibpodAPI) Commit(call iopodman.VarlinkCall, name, imageName string, changes []string, ...) error
- func (i *LibpodAPI) CreateContainer(call iopodman.VarlinkCall, config iopodman.Create) error
- func (i *LibpodAPI) CreateImage(call iopodman.VarlinkCall) error
- func (i *LibpodAPI) CreatePod(call iopodman.VarlinkCall, create iopodman.PodCreate) error
- func (i *LibpodAPI) DeleteStoppedContainers(call iopodman.VarlinkCall) error
- func (i *LibpodAPI) DeleteUnusedImages(call iopodman.VarlinkCall) error
- func (i *LibpodAPI) ExportContainer(call iopodman.VarlinkCall, name, path string) error
- func (i *LibpodAPI) ExportImage(call iopodman.VarlinkCall, name, destination string, compress bool, ...) error
- func (i *LibpodAPI) GetAttachSockets(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) GetContainer(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) GetContainerLogs(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) GetContainerStats(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) GetImage(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) GetInfo(call iopodman.VarlinkCall) error
- func (i *LibpodAPI) GetPod(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) GetPodStats(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) GetVersion(call iopodman.VarlinkCall) error
- func (i *LibpodAPI) HistoryImage(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) ImportImage(call iopodman.VarlinkCall, source, reference, message string, changes []string) error
- func (i *LibpodAPI) InspectContainer(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) InspectImage(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) InspectPod(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) KillContainer(call iopodman.VarlinkCall, name string, signal int64) error
- func (i *LibpodAPI) KillPod(call iopodman.VarlinkCall, name string, signal int64) error
- func (i *LibpodAPI) ListContainerChanges(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) ListContainerProcesses(call iopodman.VarlinkCall, name string, opts []string) error
- func (i *LibpodAPI) ListContainers(call iopodman.VarlinkCall) error
- func (i *LibpodAPI) ListImages(call iopodman.VarlinkCall) error
- func (i *LibpodAPI) ListPods(call iopodman.VarlinkCall) error
- func (i *LibpodAPI) PauseContainer(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) PausePod(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) Ping(call iopodman.VarlinkCall) error
- func (i *LibpodAPI) PullImage(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) PushImage(call iopodman.VarlinkCall, name, tag string, tlsVerify bool) error
- func (i *LibpodAPI) RemoveContainer(call iopodman.VarlinkCall, name string, force bool) error
- func (i *LibpodAPI) RemoveImage(call iopodman.VarlinkCall, name string, force bool) error
- func (i *LibpodAPI) RemovePod(call iopodman.VarlinkCall, name string, force bool) error
- func (i *LibpodAPI) RenameContainer(call iopodman.VarlinkCall) error
- func (i *LibpodAPI) ResizeContainerTty(call iopodman.VarlinkCall) error
- func (i *LibpodAPI) RestartContainer(call iopodman.VarlinkCall, name string, timeout int64) error
- func (i *LibpodAPI) RestartPod(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) SearchImage(call iopodman.VarlinkCall, name string, limit int64) error
- func (i *LibpodAPI) StartContainer(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) StartPod(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) StopContainer(call iopodman.VarlinkCall, name string, timeout int64) error
- func (i *LibpodAPI) StopPod(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) TagImage(call iopodman.VarlinkCall, name, tag string) error
- func (i *LibpodAPI) UnpauseContainer(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) UnpausePod(call iopodman.VarlinkCall, name string) error
- func (i *LibpodAPI) UpdateContainer(call iopodman.VarlinkCall) error
- func (i *LibpodAPI) WaitContainer(call iopodman.VarlinkCall, name string) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type LibpodAPI ¶
LibpodAPI is the basic varlink struct for libpod
func (*LibpodAPI) AttachToContainer ¶
AttachToContainer ... TODO: DO we also want a different one for websocket?
func (*LibpodAPI) BuildImage ¶
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 ¶
CreateContainer ...
func (*LibpodAPI) CreateImage ¶
CreateImage ... TODO With Pull being added, should we skip Create?
func (*LibpodAPI) DeleteStoppedContainers ¶
DeleteStoppedContainers ...
func (*LibpodAPI) DeleteUnusedImages ¶
DeleteUnusedImages deletes any images that do not have containers associated with it. TODO Filters are not implemented
func (*LibpodAPI) ExportContainer ¶
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
GetAttachSockets ...
func (*LibpodAPI) GetContainer ¶ added in v0.5.1
GetContainer ...
func (*LibpodAPI) GetContainerLogs ¶
GetContainerLogs ...
func (*LibpodAPI) GetContainerStats ¶
GetContainerStats ...
func (*LibpodAPI) GetImage ¶ added in v0.6.1
GetImage returns a single image in the form of a ImageInList
func (*LibpodAPI) GetInfo ¶ added in v0.5.2
GetInfo returns details about the podman host and its stores
func (*LibpodAPI) GetPodStats ¶ added in v0.8.4
GetPodStats ...
func (*LibpodAPI) GetVersion ¶
GetVersion ...
func (*LibpodAPI) HistoryImage ¶
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 ¶
InspectContainer ...
func (*LibpodAPI) InspectImage ¶
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
InspectPod ...
func (*LibpodAPI) KillContainer ¶
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
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 ¶
ListContainerChanges ...
func (*LibpodAPI) ListContainerProcesses ¶
func (i *LibpodAPI) ListContainerProcesses(call iopodman.VarlinkCall, name string, opts []string) error
ListContainerProcesses ...
func (*LibpodAPI) ListContainers ¶
ListContainers ...
func (*LibpodAPI) ListImages ¶
ListImages lists all the images in the store It requires no inputs.
func (*LibpodAPI) PauseContainer ¶
PauseContainer ...
func (*LibpodAPI) Ping ¶
Ping returns a simple string "OK" response for clients to make sure the service is working.
func (*LibpodAPI) PullImage ¶
PullImage pulls an image from a registry to the image store. TODO This implementation is incomplete
func (*LibpodAPI) PushImage ¶
PushImage pushes an local image to registry TODO We need to add options for signing, credentials, tls, and multi-tag
func (*LibpodAPI) RemoveContainer ¶
RemoveContainer ...
func (*LibpodAPI) RemoveImage ¶
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) RenameContainer ¶
RenameContainer ...
func (*LibpodAPI) ResizeContainerTty ¶
ResizeContainerTty ...
func (*LibpodAPI) RestartContainer ¶
RestartContainer ...
func (*LibpodAPI) RestartPod ¶ added in v0.8.3
RestartPod ...
func (*LibpodAPI) SearchImage ¶
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 ¶
StartContainer ...
func (*LibpodAPI) StopContainer ¶
StopContainer ...
func (*LibpodAPI) TagImage ¶
TagImage accepts an image name and tag as strings and tags an image in the local store.
func (*LibpodAPI) UnpauseContainer ¶
UnpauseContainer ...
func (*LibpodAPI) UnpausePod ¶ added in v0.8.3
UnpausePod ...
func (*LibpodAPI) UpdateContainer ¶
UpdateContainer ...
func (*LibpodAPI) WaitContainer ¶
WaitContainer ...