summaryrefslogtreecommitdiff
path: root/pkg/domain/infra/tunnel
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-08-24 06:00:03 -0400
committerGitHub <noreply@github.com>2022-08-24 06:00:03 -0400
commitd4e54fa9992d369596bcaf969bea8dbbcb7335ab (patch)
tree8f1d53081039b64330060d3e3e16717239206e2c /pkg/domain/infra/tunnel
parentbbd8b64a4247c591738f7ebbac683f48aa7351a5 (diff)
parent3bf52aa338b33de719e087e15402081568453284 (diff)
downloadpodman-d4e54fa9992d369596bcaf969bea8dbbcb7335ab.tar.gz
podman-d4e54fa9992d369596bcaf969bea8dbbcb7335ab.tar.bz2
podman-d4e54fa9992d369596bcaf969bea8dbbcb7335ab.zip
Merge pull request #15351 from marshall-lee/images-pull-simple
Simplify ImagesPull for when Quiet flag is on
Diffstat (limited to 'pkg/domain/infra/tunnel')
-rw-r--r--pkg/domain/infra/tunnel/images.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/domain/infra/tunnel/images.go b/pkg/domain/infra/tunnel/images.go
index bb3014099..2716aaf2a 100644
--- a/pkg/domain/infra/tunnel/images.go
+++ b/pkg/domain/infra/tunnel/images.go
@@ -110,6 +110,7 @@ func (ir *ImageEngine) Pull(ctx context.Context, rawImage string, opts entities.
options.WithAllTags(opts.AllTags).WithAuthfile(opts.Authfile).WithArch(opts.Arch).WithOS(opts.OS)
options.WithVariant(opts.Variant).WithPassword(opts.Password)
options.WithQuiet(opts.Quiet).WithUsername(opts.Username).WithPolicy(opts.PullPolicy.String())
+ options.WithProgressWriter(opts.Writer)
if s := opts.SkipTLSVerify; s != types.OptionalBoolUndefined {
if s == types.OptionalBoolTrue {
options.WithSkipTLSVerify(true)