varlinkapi

package
v0.5.1 Latest Latest
Warning

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

Go to latest
Published: May 4, 2018 License: Apache-2.0 Imports: 19 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func New

New creates a new varlink client

Types

type LibpodAPI

type LibpodAPI struct {
	Cli *cli.Context
	ioprojectatomicpodman.VarlinkInterface
}

LibpodAPI is the basic varlink struct for libpod

func (*LibpodAPI) AttachToContainer

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

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

func (*LibpodAPI) BuildImage

func (i *LibpodAPI) BuildImage(call ioprojectatomicpodman.VarlinkCall) error

BuildImage ... TODO Waiting for buildah to be vendored into libpod to do this only one

func (*LibpodAPI) CreateContainer

func (i *LibpodAPI) CreateContainer(call ioprojectatomicpodman.VarlinkCall) error

CreateContainer ...

func (*LibpodAPI) CreateFromContainer

func (i *LibpodAPI) CreateFromContainer(call ioprojectatomicpodman.VarlinkCall) error

CreateFromContainer ... TODO This must wait until buildah is properly vendored into libpod

func (*LibpodAPI) CreateImage

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

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

func (*LibpodAPI) DeleteStoppedContainers

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

DeleteStoppedContainers ...

func (*LibpodAPI) DeleteUnusedImages

func (i *LibpodAPI) DeleteUnusedImages(call ioprojectatomicpodman.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 ioprojectatomicpodman.VarlinkCall, name, path string) error

ExportContainer ...

func (*LibpodAPI) ExportImage

func (i *LibpodAPI) ExportImage(call ioprojectatomicpodman.VarlinkCall, name, destination string, compress bool) error

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

func (*LibpodAPI) GetContainer added in v0.5.1

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

GetContainer ...

func (*LibpodAPI) GetContainerLogs

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

GetContainerLogs ...

func (*LibpodAPI) GetContainerStats

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

GetContainerStats ...

func (*LibpodAPI) GetVersion

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

GetVersion ...

func (*LibpodAPI) HistoryImage

func (i *LibpodAPI) HistoryImage(call ioprojectatomicpodman.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 ioprojectatomicpodman.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 ioprojectatomicpodman.VarlinkCall, name string) error

InspectContainer ...

func (*LibpodAPI) InspectImage

func (i *LibpodAPI) InspectImage(call ioprojectatomicpodman.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) KillContainer

func (i *LibpodAPI) KillContainer(call ioprojectatomicpodman.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) ListContainerChanges

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

ListContainerChanges ...

func (*LibpodAPI) ListContainerProcesses

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

ListContainerProcesses ...

func (*LibpodAPI) ListContainers

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

ListContainers ...

func (*LibpodAPI) ListImages

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

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

func (*LibpodAPI) PauseContainer

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

PauseContainer ...

func (*LibpodAPI) Ping

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

func (*LibpodAPI) PullImage

func (i *LibpodAPI) PullImage(call ioprojectatomicpodman.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 ioprojectatomicpodman.VarlinkCall, name, tag string, tlsVerify bool) error

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

func (*LibpodAPI) RemoveContainer

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

RemoveContainer ...

func (*LibpodAPI) RemoveImage

func (i *LibpodAPI) RemoveImage(call ioprojectatomicpodman.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) RenameContainer

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

RenameContainer ...

func (*LibpodAPI) ResizeContainerTty

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

ResizeContainerTty ...

func (*LibpodAPI) RestartContainer

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

RestartContainer ...

func (*LibpodAPI) SearchImage

func (i *LibpodAPI) SearchImage(call ioprojectatomicpodman.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 ioprojectatomicpodman.VarlinkCall) error

StartContainer ...

func (*LibpodAPI) StopContainer

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

StopContainer ...

func (*LibpodAPI) TagImage

func (i *LibpodAPI) TagImage(call ioprojectatomicpodman.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 ioprojectatomicpodman.VarlinkCall, name string) error

UnpauseContainer ...

func (*LibpodAPI) UpdateContainer

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

UpdateContainer ...

func (*LibpodAPI) WaitContainer

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

WaitContainer ...

Jump to

Keyboard shortcuts

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