From 2cab1ecff3b12afaced261768e862ca009a51545 Mon Sep 17 00:00:00 2001 From: Sagi Shnaidman Date: Mon, 14 Jul 2025 20:17:36 +0300 Subject: [PATCH] Fix obsolete image in CI Signed-off-by: Sagi Shnaidman --- .../targets/podman_image/files/Containerfile | 2 +- .../targets/podman_image/tasks/main.yml | 22 +++++++++---------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/tests/integration/targets/podman_image/files/Containerfile b/tests/integration/targets/podman_image/files/Containerfile index d4bd8ed..657968d 100644 --- a/tests/integration/targets/podman_image/files/Containerfile +++ b/tests/integration/targets/podman_image/files/Containerfile @@ -1,3 +1,3 @@ -FROM quay.io/coreos/alpine-sh +FROM quay.io/sshnaidm1/alpine-sh ENV VAR testing WORKDIR ${VAR} diff --git a/tests/integration/targets/podman_image/tasks/main.yml b/tests/integration/targets/podman_image/tasks/main.yml index 261202c..8a93805 100644 --- a/tests/integration/targets/podman_image/tasks/main.yml +++ b/tests/integration/targets/podman_image/tasks/main.yml @@ -8,7 +8,7 @@ name: "{{ item }}" state: absent loop: - - quay.io/coreos/alpine-sh + - quay.io/sshnaidm1/alpine-sh - docker.io/alpine - docker.io/library/ubuntu - docker.io/library/alpine @@ -16,13 +16,13 @@ - name: Pull image containers.podman.podman_image: executable: "{{ test_executable | default('podman') }}" - name: quay.io/coreos/alpine-sh + name: quay.io/sshnaidm1/alpine-sh register: pull1 - name: Pull image again containers.podman.podman_image: executable: "{{ test_executable | default('podman') }}" - name: quay.io/coreos/alpine-sh + name: quay.io/sshnaidm1/alpine-sh register: pull2 - name: Pull image from docker.io with short url @@ -72,20 +72,20 @@ argv: - podman - tag - - quay.io/coreos/alpine-sh + - quay.io/sshnaidm1/alpine-sh - quay.io/coreos/library/alpine-sh - name: Remove image (tag) containers.podman.podman_image: executable: "{{ test_executable | default('podman') }}" - name: quay.io/coreos/alpine-sh + name: quay.io/sshnaidm1/alpine-sh state: absent register: rmi1 - name: Remove image again containers.podman.podman_image: executable: "{{ test_executable | default('podman') }}" - name: quay.io/coreos/alpine-sh + name: quay.io/sshnaidm1/alpine-sh state: absent register: rmi2 @@ -245,7 +245,7 @@ build: format: oci container_file: |- - FROM quay.io/coreos/alpine-sh + FROM quay.io/sshnaidm1/alpine-sh register: oci_build7 loop: [0, 1] @@ -407,7 +407,7 @@ path: "{{ playbook_dir }}" build: container_file: |- - FROM quay.io/coreos/alpine-sh + FROM quay.io/sshnaidm1/alpine-sh RUN echo "Hello World" > /tmp/hello.txt register: build_custom1 @@ -418,7 +418,7 @@ state: build build: container_file: |- - FROM quay.io/coreos/alpine-sh + FROM quay.io/sshnaidm1/alpine-sh RUN echo "Hello2 World" > /tmp/hello2.txt force: true register: build_custom2 @@ -430,7 +430,7 @@ state: build build: container_file: |- - FROM quay.io/coreos/alpine-sh + FROM quay.io/sshnaidm1/alpine-sh RUN echo "Hello2 World" > /tmp/hello2.txt file: /var/tmp/build/Dockerfile force: true @@ -589,7 +589,7 @@ state: absent loop: - docker.io/library/ubuntu - - quay.io/coreos/alpine-sh + - quay.io/sshnaidm1/alpine-sh - quay.io/coreos/etcd:v3.3.11 - localhost/testimage - localhost/testimage2