diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-04-29 14:42:30 +0200 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-04-29 15:23:30 +0200 |
commit | 5c108f75ebdf4bf9214504f8b170ffabff1a38d4 (patch) | |
tree | 6d0fa3e364fbc87e3e096265401084b1574ba4b5 /pkg/bindings/images/images.go | |
parent | 417764187513561e0fb66c30b23c20cb199a747a (diff) | |
download | podman-5c108f75ebdf4bf9214504f8b170ffabff1a38d4.tar.gz podman-5c108f75ebdf4bf9214504f8b170ffabff1a38d4.tar.bz2 podman-5c108f75ebdf4bf9214504f8b170ffabff1a38d4.zip |
login system test: enable "push ok"
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg/bindings/images/images.go')
-rw-r--r-- | pkg/bindings/images/images.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pkg/bindings/images/images.go b/pkg/bindings/images/images.go index ff49ca914..63fe2556b 100644 --- a/pkg/bindings/images/images.go +++ b/pkg/bindings/images/images.go @@ -311,8 +311,9 @@ func Push(ctx context.Context, source string, destination string, options entiti params.Set("credentials", options.Credentials) params.Set("destination", destination) if options.SkipTLSVerify != types.OptionalBoolUndefined { - val := bool(options.SkipTLSVerify == types.OptionalBoolTrue) - params.Set("tlsVerify", strconv.FormatBool(!val)) + // Note: we have to verify if skipped is false. + verifyTLS := bool(options.SkipTLSVerify == types.OptionalBoolFalse) + params.Set("tlsVerify", strconv.FormatBool(verifyTLS)) } path := fmt.Sprintf("/images/%s/push", source) |