diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2019-02-18 17:28:26 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2019-02-20 10:25:25 +0100 |
commit | 0d3eaca28a5485540feee02918abcd6f294e9a1d (patch) | |
tree | 40e860788c5bddcbd83a8a637f75ccbcf315fed6 /pkg | |
parent | 87c9f4cc226a8b709d39de473f09dd341b1a4fc3 (diff) | |
download | podman-0d3eaca28a5485540feee02918abcd6f294e9a1d.tar.gz podman-0d3eaca28a5485540feee02918abcd6f294e9a1d.tar.bz2 podman-0d3eaca28a5485540feee02918abcd6f294e9a1d.zip |
SearchImages: extend API with filter parameter
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/varlinkapi/images.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/varlinkapi/images.go b/pkg/varlinkapi/images.go index e80a47684..f4b8a7e18 100644 --- a/pkg/varlinkapi/images.go +++ b/pkg/varlinkapi/images.go @@ -434,9 +434,10 @@ func (i *LibpodAPI) RemoveImage(call iopodman.VarlinkCall, name string, force bo // SearchImages searches all registries configured in /etc/containers/registries.conf for an image // Requires an image name and a search limit as int -func (i *LibpodAPI) SearchImages(call iopodman.VarlinkCall, query string, limit *int64, tlsVerify *bool) error { +func (i *LibpodAPI) SearchImages(call iopodman.VarlinkCall, query string, limit *int64, tlsVerify *bool, filter []string) error { searchOptions := image.SearchOptions{ Limit: 1000, + Filter: filter, InsecureSkipTLSVerify: types.NewOptionalBool(!*tlsVerify), } results, err := image.SearchImages(query, searchOptions) |