summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-07-26 16:01:21 +0200
committerGitHub <noreply@github.com>2021-07-26 16:01:21 +0200
commit89853a30ebc65d9357759c2e1f470b7e2f4f6760 (patch)
tree663902d52d710efaa261c8b245abbad888ed388e /pkg
parent5ef78c0bfa88c5423422774325bc4a89f23805b9 (diff)
parent5473490c6e779fd2bf9e2e5f04f265deaa9ba94e (diff)
downloadpodman-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
Diffstat (limited to 'pkg')
-rw-r--r--pkg/domain/infra/abi/manifest.go1
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