summaryrefslogtreecommitdiff
path: root/libpod/image/search.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2019-03-13 17:17:07 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2019-03-29 08:27:33 -0400
commitc37589f503913ac85622cc9110e2eb983b1b38f3 (patch)
tree9061248749f167ec6a5674efa97fef55d2890a95 /libpod/image/search.go
parent6ab27c6355a4df228ed6d527162d5251d867b9b3 (diff)
downloadpodman-c37589f503913ac85622cc9110e2eb983b1b38f3.tar.gz
podman-c37589f503913ac85622cc9110e2eb983b1b38f3.tar.bz2
podman-c37589f503913ac85622cc9110e2eb983b1b38f3.zip
Set blob cache directory based on GraphDriver
Currently in rootless containers, we end up not using the blob cache. We also don't store the blob cache based on the users specified graph storage. This change will cause the cache directory to be stored with the rest of the containe images. While doing this patch, I found that we had duplicated GetSystemContext in two places in libpod. I cleaned this up. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'libpod/image/search.go')
-rw-r--r--libpod/image/search.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/libpod/image/search.go b/libpod/image/search.go
index 212eff00b..2c66ce284 100644
--- a/libpod/image/search.go
+++ b/libpod/image/search.go
@@ -9,7 +9,6 @@ import (
"github.com/containers/image/docker"
"github.com/containers/image/types"
- "github.com/containers/libpod/libpod/common"
sysreg "github.com/containers/libpod/pkg/registries"
"github.com/fatih/camelcase"
"github.com/pkg/errors"
@@ -157,7 +156,7 @@ func searchImageInRegistry(term string, registry string, options SearchOptions)
limit = options.Limit
}
- sc := common.GetSystemContext("", options.Authfile, false)
+ sc := GetSystemContext("", options.Authfile, false)
sc.DockerInsecureSkipTLSVerify = options.InsecureSkipTLSVerify
// FIXME: Set this more globally. Probably no reason not to have it in
// every types.SystemContext, and to compute the value just once in one