From f41939d8d81556a3df3a878fa28c849c10af7670 Mon Sep 17 00:00:00 2001 From: Sergey <6213510+sshnaidm@users.noreply.github.com> Date: Sat, 12 Jul 2025 16:38:54 +0300 Subject: [PATCH] Replace image in tests from quay.io (#948) Signed-off-by: Sagi Shnaidman --- .../targets/podman_image_info/tasks/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/integration/targets/podman_image_info/tasks/main.yml b/tests/integration/targets/podman_image_info/tasks/main.yml index 571df28..274fa65 100644 --- a/tests/integration/targets/podman_image_info/tasks/main.yml +++ b/tests/integration/targets/podman_image_info/tasks/main.yml @@ -20,12 +20,12 @@ register: all_image_result - name: Pull another image - command: podman pull quay.io/coreos/dnsmasq + command: podman pull quay.io/sshnaidm1/python:3.12-slim - name: Get info on specific image containers.podman.podman_image_info: executable: "{{ test_executable | default('podman') }}" - name: quay.io/coreos/dnsmasq + name: quay.io/sshnaidm1/python:3.12-slim register: named_image_result - name: Check results @@ -33,7 +33,7 @@ that: - all_image_result.images | length > 0 - named_image_result.images | length == 1 - - "'quay.io/coreos/dnsmasq' in named_image_result.images[0]['RepoTags'][0]" + - "'quay.io/sshnaidm1/python:3.12-slim' in named_image_result.images[0]['RepoTags'][0]" - name: Get info on single image that does not exist containers.podman.podman_image_info: @@ -53,7 +53,7 @@ containers.podman.podman_image_info: executable: "{{ test_executable | default('podman') }}" name: - - quay.io/coreos/dnsmasq + - quay.io/sshnaidm1/python:3.12-slim - nope - quay.io/coreos/etcd:v3.5.19 register: mixed_nonexistent @@ -73,4 +73,4 @@ state: absent loop: - quay.io/coreos/etcd:v3.5.19 - - quay.io/coreos/dnsmasq + - quay.io/sshnaidm1/python:3.12-slim