diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-02-19 17:54:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-19 17:54:36 +0100 |
commit | 10ffa3ff82ff28e7761c23cda5a5c16d83e0d0ce (patch) | |
tree | deccd8f92014e70f69a4d07c28655a97f7abd31e /cmd | |
parent | e92f7ca7dd64ebcc29ce105f997d9a748792f6cd (diff) | |
parent | 8f40c4e6b4a395f427c9eb812f34d5cc1e64b765 (diff) | |
download | podman-10ffa3ff82ff28e7761c23cda5a5c16d83e0d0ce.tar.gz podman-10ffa3ff82ff28e7761c23cda5a5c16d83e0d0ce.tar.bz2 podman-10ffa3ff82ff28e7761c23cda5a5c16d83e0d0ce.zip |
Merge pull request #2348 from baude/remotepullverbose
podman-remote pull
Diffstat (limited to 'cmd')
-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. |