aboutsummaryrefslogtreecommitdiff
path: root/pkg/domain/infra/tunnel/images.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-04-08 07:28:16 -0400
committerGitHub <noreply@github.com>2022-04-08 07:28:16 -0400
commit0c9c3e6714905fbb493e0b634e09b56ae096592e (patch)
tree303888c404656f78af9b1a2b3e577386bf68cc96 /pkg/domain/infra/tunnel/images.go
parent4bd35cb01f03fd90ff304f666e53fcd222ad77f9 (diff)
parente133a06d2f4a3e94bfbd60b647046f2f515c9c24 (diff)
downloadpodman-0c9c3e6714905fbb493e0b634e09b56ae096592e.tar.gz
podman-0c9c3e6714905fbb493e0b634e09b56ae096592e.tar.bz2
podman-0c9c3e6714905fbb493e0b634e09b56ae096592e.zip
Merge pull request #13810 from vrothberg/images-size
images --size
Diffstat (limited to 'pkg/domain/infra/tunnel/images.go')
-rw-r--r--pkg/domain/infra/tunnel/images.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/infra/tunnel/images.go b/pkg/domain/infra/tunnel/images.go
index 18e10e8dd..4694189e3 100644
--- a/pkg/domain/infra/tunnel/images.go
+++ b/pkg/domain/infra/tunnel/images.go
@@ -38,7 +38,7 @@ func (ir *ImageEngine) List(ctx context.Context, opts entities.ImageListOptions)
f := strings.Split(filter, "=")
filters[f[0]] = f[1:]
}
- options := new(images.ListOptions).WithAll(opts.All).WithFilters(filters)
+ options := new(images.ListOptions).WithAll(opts.All).WithFilters(filters).WithSize(opts.Size)
psImages, err := images.List(ir.ClientCtx, options)
if err != nil {
return nil, err