diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-07-26 11:52:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-26 11:52:17 +0200 |
commit | 43d6f89d12c10e4605759174bb2bc583035ee118 (patch) | |
tree | a1739f49c30a7b3f83cf6f8017cde5163bf58462 /pkg/api/handlers/compat/images_search.go | |
parent | e9d29d71cb3185fc071ba4d5f353c9eff6ff349a (diff) | |
parent | 52a4642edd8a2c2f62d10c2180d785b4f04f18c5 (diff) | |
download | podman-43d6f89d12c10e4605759174bb2bc583035ee118.tar.gz podman-43d6f89d12c10e4605759174bb2bc583035ee118.tar.bz2 podman-43d6f89d12c10e4605759174bb2bc583035ee118.zip |
Merge pull request #15057 from marshall-lee/tls-verify-default-true
Set TLSVerify=true by default for API endpoints
Diffstat (limited to 'pkg/api/handlers/compat/images_search.go')
-rw-r--r-- | pkg/api/handlers/compat/images_search.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/api/handlers/compat/images_search.go b/pkg/api/handlers/compat/images_search.go index a6fd3a3a1..2fc95e84e 100644 --- a/pkg/api/handlers/compat/images_search.go +++ b/pkg/api/handlers/compat/images_search.go @@ -26,6 +26,7 @@ func SearchImages(w http.ResponseWriter, r *http.Request) { ListTags bool `json:"listTags"` }{ // This is where you can override the golang default value for one of fields + TLSVerify: true, } if err := decoder.Decode(&query, r.URL.Query()); err != nil { |