diff options
author | Chris Evich <cevich@redhat.com> | 2020-10-08 09:08:19 -0400 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2020-10-28 12:25:53 -0600 |
commit | 53fe386da047cce6a9e9f381b2dd73335babe305 (patch) | |
tree | e9f6edd6be4336a9a8a87e6da1abc4ecc225763c /test | |
parent | 5d48606dae9c833869c23ab86edd55a7f9fbf85d (diff) | |
download | podman-53fe386da047cce6a9e9f381b2dd73335babe305.tar.gz podman-53fe386da047cce6a9e9f381b2dd73335babe305.tar.bz2 podman-53fe386da047cce6a9e9f381b2dd73335babe305.zip |
Cirrus: Use google mirror for docker.io
Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/registries.conf | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/test/registries.conf b/test/registries.conf index f27a282d6..0559c9e52 100644 --- a/test/registries.conf +++ b/test/registries.conf @@ -1,10 +1,17 @@ # Note that changing the order here may break tests. -[registries.search] -registries = ['docker.io', 'quay.io', 'registry.fedoraproject.org'] +unqualified-search-registries = ['docker.io', 'quay.io', 'registry.fedoraproject.org'] -[registries.insecure] -registries = [] +[[registry]] +# In Nov. 2020, Docker rate-limits image pulling. To avoid hitting these +# limits while testing, always use the google mirror for qualified and +# unqualified `docker.io` images. +# Ref: https://cloud.google.com/container-registry/docs/pulling-cached-images +prefix="docker.io" +location="mirror.gcr.io" -#blocked (docker only) -[registries.block] -registries = [] +# 2020-10-27 a number of images are not present in gcr.io, and podman +# barfs spectacularly when trying to fetch them. We've hand-copied +# those to quay, using skopeo copy --all ... +[[registry]] +prefix="docker.io/library" +location="quay.io/libpod" |