diff options
author | Nalin Dahyabhai <nalin@redhat.com> | 2019-10-16 12:00:12 -0400 |
---|---|---|
committer | Nalin Dahyabhai <nalin@redhat.com> | 2019-10-29 13:35:19 -0400 |
commit | 07195ff09fdcb0d2d3a044c92665b082d6e742b1 (patch) | |
tree | f69d2b1d0f904706e260962ca64674a231a0d071 /cmd/podman/varlink/io.podman.varlink | |
parent | b9313d355e8cd6307d8772ad9c21958ffe981e5b (diff) | |
download | podman-07195ff09fdcb0d2d3a044c92665b082d6e742b1.tar.gz podman-07195ff09fdcb0d2d3a044c92665b082d6e742b1.tar.bz2 podman-07195ff09fdcb0d2d3a044c92665b082d6e742b1.zip |
API: report multiple digests for images
Be prepared to report multiple image digests for images which contain
multiple manifests but, because they continue to have the same set of
layers and the same configuration, are considered to be the same image.
Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
Diffstat (limited to 'cmd/podman/varlink/io.podman.varlink')
-rw-r--r-- | cmd/podman/varlink/io.podman.varlink | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/varlink/io.podman.varlink b/cmd/podman/varlink/io.podman.varlink index 9ec7d1172..f9339fccb 100644 --- a/cmd/podman/varlink/io.podman.varlink +++ b/cmd/podman/varlink/io.podman.varlink @@ -58,7 +58,8 @@ type VolumeRemoveOpts ( type Image ( id: string, - digest: string, + digest: string, + digests: []string, parentId: string, repoTags: []string, repoDigests: []string, |