aboutsummaryrefslogtreecommitdiff
path: root/pkg/domain
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-06-23 13:05:31 -0400
committerGitHub <noreply@github.com>2021-06-23 13:05:31 -0400
commit7ed18eaec6a3ad6aff45cec79fdb15e7ffb6396c (patch)
treeb8d6e6c38c0efa5b48743b2b4e8bd96c3f7398c4 /pkg/domain
parent3322ea2c68e1bac86748534615fd35c19bc0a655 (diff)
parent5fc622f945de46db85c8cc0284f935bac1929e3a (diff)
downloadpodman-7ed18eaec6a3ad6aff45cec79fdb15e7ffb6396c.tar.gz
podman-7ed18eaec6a3ad6aff45cec79fdb15e7ffb6396c.tar.bz2
podman-7ed18eaec6a3ad6aff45cec79fdb15e7ffb6396c.zip
Merge pull request #10739 from vrothberg/fix-10682
create: support images with invalid platform
Diffstat (limited to 'pkg/domain')
-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 3fd9a755d..42027a2dc 100644
--- a/pkg/domain/infra/tunnel/images.go
+++ b/pkg/domain/infra/tunnel/images.go
@@ -107,7 +107,7 @@ func (ir *ImageEngine) Pull(ctx context.Context, rawImage string, opts entities.
options := new(images.PullOptions)
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)
+ options.WithQuiet(opts.Quiet).WithUsername(opts.Username).WithPolicy(opts.PullPolicy.String())
if s := opts.SkipTLSVerify; s != types.OptionalBoolUndefined {
if s == types.OptionalBoolTrue {
options.WithSkipTLSVerify(true)