From fbbdd2aa26dadce6bcabc5c818dc979f2babef1c Mon Sep 17 00:00:00 2001 From: Aleksandar Todorov Date: Tue, 23 Feb 2021 10:36:34 +0200 Subject: [PATCH] tests: Use full repo name to ubi8-minimal to workaround bug /etc/containers/registries.conf.d/rhel-shortnames.conf shipped in containers-common-1:1.2.2-1.module+el8.4.0+10073+30e5ea69 has a wrong shortname for ubi8-minimal: "ubi8-minimal" = "registry.access.redhat.com/repository/ubi8-minimal" resulting in `name unknown: Repo not found` when trying to pull the image via its short name. Related: rhbz#1931785 --- test/data/ansible/check_ostree.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/data/ansible/check_ostree.yaml b/test/data/ansible/check_ostree.yaml index fc9cf924b..1793015b8 100644 --- a/test/data/ansible/check_ostree.yaml +++ b/test/data/ansible/check_ostree.yaml @@ -275,7 +275,7 @@ # case: check running container with podman - name: run ubi8 image - command: podman run ubi8-minimal:latest cat /etc/redhat-release + command: podman run registry.access.redhat.com/ubi8/ubi-minimal:latest cat /etc/redhat-release register: podman_result become: yes