diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2021-03-24 13:10:51 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2021-03-25 16:20:35 +0100 |
commit | 2a66ef333affa84932ae7b9d3377b622d9f75e55 (patch) | |
tree | 04e6dde22cd2ad3868774ee669cd17cfc3100c6c /libpod/image/testdata | |
parent | 7fe40cd20357f04076826c64c1860a17661f0a57 (diff) | |
download | podman-2a66ef333affa84932ae7b9d3377b622d9f75e55.tar.gz podman-2a66ef333affa84932ae7b9d3377b622d9f75e55.tar.bz2 podman-2a66ef333affa84932ae7b9d3377b622d9f75e55.zip |
libpod/image: unit tests: use a `registries.conf` for aliases
Since some unit tests use "busybox", we need to point it to some alias
if we want it to pass CI on F34 where we're running in enforced mode.
Furthermore, make sure that the registries.conf can actually be
overridden in the code.
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'libpod/image/testdata')
-rw-r--r-- | libpod/image/testdata/registries.conf | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpod/image/testdata/registries.conf b/libpod/image/testdata/registries.conf new file mode 100644 index 000000000..16622a1ac --- /dev/null +++ b/libpod/image/testdata/registries.conf @@ -0,0 +1,4 @@ +short-name-mode="enforcing" + +[aliases] +"busybox"="docker.io/library/busybox" |