diff options
author | Flavio Castelli <fcastelli@suse.com> | 2020-09-09 12:34:55 +0200 |
---|---|---|
committer | Flavio Castelli <fcastelli@suse.com> | 2020-09-09 12:34:55 +0200 |
commit | f1df56a1016ba11aa97e7053e78c656bcb284523 (patch) | |
tree | 9f9cce3ca2e06de2225299bb3d4acb5f9a6072a1 /pkg/domain/infra | |
parent | 1158025ef8d8e8d9d0d2157292d36b4d7392ea39 (diff) | |
download | podman-f1df56a1016ba11aa97e7053e78c656bcb284523.tar.gz podman-f1df56a1016ba11aa97e7053e78c656bcb284523.tar.bz2 podman-f1df56a1016ba11aa97e7053e78c656bcb284523.zip |
manifest push: handle cert-dir flag
Prior to this commit the value of the `--cert-dir` flag
specified for `podman manifest push` was not handled by the internal
code.
That resulted in `podman manifest push` not reading the certificates
stored inside of the directory specified by the user.
Signed-off-by: Flavio Castelli <fcastelli@suse.com>
Diffstat (limited to 'pkg/domain/infra')
-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 540eff50b..55f73bf65 100644 --- a/pkg/domain/infra/abi/manifest.go +++ b/pkg/domain/infra/abi/manifest.go @@ -208,6 +208,7 @@ func (ir *ImageEngine) ManifestPush(ctx context.Context, names []string, opts en } sys.AuthFilePath = opts.Authfile sys.DockerInsecureSkipTLSVerify = opts.SkipTLSVerify + sys.DockerCertPath = opts.CertDir if opts.Username != "" && opts.Password != "" { sys.DockerAuthConfig = &types.DockerAuthConfig{ |