diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-29 17:04:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-29 17:04:22 +0200 |
commit | 27aa3a7837fa1c5379ff7ca1a9dcd6416b2ac685 (patch) | |
tree | 20d229709222de49e138b23e5790baf958c56338 /pkg/domain/infra/abi/images.go | |
parent | d1196d08d0c931885cf383ff4e568a855e8e4673 (diff) | |
parent | 5ee3af2d03b595bdff004ec179fc8a38e97cc5fe (diff) | |
download | podman-27aa3a7837fa1c5379ff7ca1a9dcd6416b2ac685.tar.gz podman-27aa3a7837fa1c5379ff7ca1a9dcd6416b2ac685.tar.bz2 podman-27aa3a7837fa1c5379ff7ca1a9dcd6416b2ac685.zip |
Merge pull request #6039 from vrothberg/enable-search-tests
Enable search tests
Diffstat (limited to 'pkg/domain/infra/abi/images.go')
-rw-r--r-- | pkg/domain/infra/abi/images.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/domain/infra/abi/images.go b/pkg/domain/infra/abi/images.go index d1245a45c..9d6be1b15 100644 --- a/pkg/domain/infra/abi/images.go +++ b/pkg/domain/infra/abi/images.go @@ -118,7 +118,7 @@ func (ir *ImageEngine) Pull(ctx context.Context, rawImage string, options entiti DockerCertPath: options.CertDir, OSChoice: options.OverrideOS, ArchitectureChoice: options.OverrideArch, - DockerInsecureSkipTLSVerify: options.TLSVerify, + DockerInsecureSkipTLSVerify: options.SkipTLSVerify, } if !options.AllTags { @@ -370,7 +370,7 @@ func (ir *ImageEngine) Search(ctx context.Context, term string, opts entities.Im Filter: *filter, Limit: opts.Limit, NoTrunc: opts.NoTrunc, - InsecureSkipTLSVerify: opts.TLSVerify, + InsecureSkipTLSVerify: opts.SkipTLSVerify, } searchResults, err := image.SearchImages(term, searchOpts) |