diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-07-26 16:01:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-26 16:01:21 +0200 |
commit | 89853a30ebc65d9357759c2e1f470b7e2f4f6760 (patch) | |
tree | 663902d52d710efaa261c8b245abbad888ed388e | |
parent | 5ef78c0bfa88c5423422774325bc4a89f23805b9 (diff) | |
parent | 5473490c6e779fd2bf9e2e5f04f265deaa9ba94e (diff) | |
download | podman-89853a30ebc65d9357759c2e1f470b7e2f4f6760.tar.gz podman-89853a30ebc65d9357759c2e1f470b7e2f4f6760.tar.bz2 podman-89853a30ebc65d9357759c2e1f470b7e2f4f6760.zip |
Merge pull request #11036 from caarlos0/fix-podman-manifest-push
fix: podman manifest push respect --tls-verify flag
-rw-r--r-- | pkg/domain/infra/abi/manifest.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/domain/infra/abi/manifest.go b/pkg/domain/infra/abi/manifest.go index 68e29f006..666bc997d 100644 --- a/pkg/domain/infra/abi/manifest.go +++ b/pkg/domain/infra/abi/manifest.go @@ -337,6 +337,7 @@ func (ir *ImageEngine) ManifestPush(ctx context.Context, name, destination strin pushOptions.ManifestMIMEType = manifestType pushOptions.RemoveSignatures = opts.RemoveSignatures pushOptions.SignBy = opts.SignBy + pushOptions.InsecureSkipTLSVerify = opts.SkipTLSVerify if opts.All { pushOptions.ImageListSelection = cp.CopyAllImages |