diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-04-29 14:33:00 +0200 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-04-29 14:33:00 +0200 |
commit | d6d1e3860c2dec64471d3d9b408e5b90b3c21e4d (patch) | |
tree | 479bb65b9146f542ef273d3cd5ea624ba84e4a45 /pkg/domain/entities | |
parent | 46b185942ce6297a3e59a048790649571676818b (diff) | |
download | podman-d6d1e3860c2dec64471d3d9b408e5b90b3c21e4d.tar.gz podman-d6d1e3860c2dec64471d3d9b408e5b90b3c21e4d.tar.bz2 podman-d6d1e3860c2dec64471d3d9b408e5b90b3c21e4d.zip |
push: fix --tls-verify
Fix --tls-verify parsing and make the associated options reflect the
correct logic. Other commands are affected as well but will be fixed
later.
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/images.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/domain/entities/images.go b/pkg/domain/entities/images.go index 707937a44..442b2cf3c 100644 --- a/pkg/domain/entities/images.go +++ b/pkg/domain/entities/images.go @@ -183,8 +183,8 @@ type ImagePushOptions struct { // SignBy adds a signature at the destination using the specified key. // Ignored for remote calls. SignBy string - // TLSVerify to enable/disable HTTPS and certificate verification. - TLSVerify types.OptionalBool + // SkipTLSVerify to skip HTTPS and certificate verification. + SkipTLSVerify types.OptionalBool } // ImageSearchOptions are the arguments for searching images. |