diff options
author | baude <bbaude@redhat.com> | 2019-02-14 12:36:22 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-02-19 10:13:07 -0600 |
commit | 8f40c4e6b4a395f427c9eb812f34d5cc1e64b765 (patch) | |
tree | deccd8f92014e70f69a4d07c28655a97f7abd31e /cmd/podman/varlink | |
parent | e92f7ca7dd64ebcc29ce105f997d9a748792f6cd (diff) | |
download | podman-8f40c4e6b4a395f427c9eb812f34d5cc1e64b765.tar.gz podman-8f40c4e6b4a395f427c9eb812f34d5cc1e64b765.tar.bz2 podman-8f40c4e6b4a395f427c9eb812f34d5cc1e64b765.zip |
podman-remote pull
Add status for remote users and podman remote-client pull.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/varlink')
-rw-r--r-- | cmd/podman/varlink/io.podman.varlink | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/cmd/podman/varlink/io.podman.varlink b/cmd/podman/varlink/io.podman.varlink index 90cadf2b4..20c8a0de5 100644 --- a/cmd/podman/varlink/io.podman.varlink +++ b/cmd/podman/varlink/io.podman.varlink @@ -719,16 +719,10 @@ method ImportImage(source: string, reference: string, message: string, changes: # error will be returned. See also [ImportImage](ImportImage). method ExportImage(name: string, destination: string, compress: bool, tags: []string) -> (image: string) -# PullImage pulls an image from a repository to local storage. After the pull is successful, the ID of the image -# is returned. -# #### Example -# ~~~ -# $ varlink call -m unix:/run/podman/io.podman/io.podman.PullImage '{"name": "registry.fedoraproject.org/fedora"}' -# { -# "id": "426866d6fa419873f97e5cbd320eeb22778244c1dfffa01c944db3114f55772e" -# } -# ~~~ -method PullImage(name: string, certDir: string, creds: string, signaturePolicy: string, tlsVerify: ?bool) -> (id: string) +# PullImage pulls an image from a repository to local storage. After a successful pull, the image id and logs +# are returned as a [MoreResponse](#MoreResponse). This connection also will handle a WantsMores request to send +# status as it occurs. +method PullImage(name: string, certDir: string, creds: string, signaturePolicy: string, tlsVerify: ?bool) -> (reply: MoreResponse) # CreatePod creates a new empty pod. It uses a [PodCreate](#PodCreate) type for input. # On success, the ID of the newly created pod will be returned. |