1
0
Fork 0
mirror of https://github.com/containers/ansible-podman-collections.git synced 2026-03-22 02:29:08 +00:00

Fix obsolete image in CI (#949)

Signed-off-by: Sagi Shnaidman <sshnaidm@redhat.com>
This commit is contained in:
Sergey 2025-07-14 20:31:36 +03:00 committed by GitHub
parent f41939d8d8
commit 43e9e4c5aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 12 deletions

View file

@ -1,3 +1,3 @@
FROM quay.io/coreos/alpine-sh FROM quay.io/sshnaidm1/alpine-sh
ENV VAR testing ENV VAR testing
WORKDIR ${VAR} WORKDIR ${VAR}

View file

@ -8,7 +8,7 @@
name: "{{ item }}" name: "{{ item }}"
state: absent state: absent
loop: loop:
- quay.io/coreos/alpine-sh - quay.io/sshnaidm1/alpine-sh
- docker.io/alpine - docker.io/alpine
- docker.io/library/ubuntu - docker.io/library/ubuntu
- docker.io/library/alpine - docker.io/library/alpine
@ -16,13 +16,13 @@
- name: Pull image - name: Pull image
containers.podman.podman_image: containers.podman.podman_image:
executable: "{{ test_executable | default('podman') }}" executable: "{{ test_executable | default('podman') }}"
name: quay.io/coreos/alpine-sh name: quay.io/sshnaidm1/alpine-sh
register: pull1 register: pull1
- name: Pull image again - name: Pull image again
containers.podman.podman_image: containers.podman.podman_image:
executable: "{{ test_executable | default('podman') }}" executable: "{{ test_executable | default('podman') }}"
name: quay.io/coreos/alpine-sh name: quay.io/sshnaidm1/alpine-sh
register: pull2 register: pull2
- name: Pull image from docker.io with short url - name: Pull image from docker.io with short url
@ -72,20 +72,20 @@
argv: argv:
- podman - podman
- tag - tag
- quay.io/coreos/alpine-sh - quay.io/sshnaidm1/alpine-sh
- quay.io/coreos/library/alpine-sh - quay.io/coreos/library/alpine-sh
- name: Remove image (tag) - name: Remove image (tag)
containers.podman.podman_image: containers.podman.podman_image:
executable: "{{ test_executable | default('podman') }}" executable: "{{ test_executable | default('podman') }}"
name: quay.io/coreos/alpine-sh name: quay.io/sshnaidm1/alpine-sh
state: absent state: absent
register: rmi1 register: rmi1
- name: Remove image again - name: Remove image again
containers.podman.podman_image: containers.podman.podman_image:
executable: "{{ test_executable | default('podman') }}" executable: "{{ test_executable | default('podman') }}"
name: quay.io/coreos/alpine-sh name: quay.io/sshnaidm1/alpine-sh
state: absent state: absent
register: rmi2 register: rmi2
@ -245,7 +245,7 @@
build: build:
format: oci format: oci
container_file: |- container_file: |-
FROM quay.io/coreos/alpine-sh FROM quay.io/sshnaidm1/alpine-sh
register: oci_build7 register: oci_build7
loop: [0, 1] loop: [0, 1]
@ -407,7 +407,7 @@
path: "{{ playbook_dir }}" path: "{{ playbook_dir }}"
build: build:
container_file: |- container_file: |-
FROM quay.io/coreos/alpine-sh FROM quay.io/sshnaidm1/alpine-sh
RUN echo "Hello World" > /tmp/hello.txt RUN echo "Hello World" > /tmp/hello.txt
register: build_custom1 register: build_custom1
@ -418,7 +418,7 @@
state: build state: build
build: build:
container_file: |- container_file: |-
FROM quay.io/coreos/alpine-sh FROM quay.io/sshnaidm1/alpine-sh
RUN echo "Hello2 World" > /tmp/hello2.txt RUN echo "Hello2 World" > /tmp/hello2.txt
force: true force: true
register: build_custom2 register: build_custom2
@ -430,7 +430,7 @@
state: build state: build
build: build:
container_file: |- container_file: |-
FROM quay.io/coreos/alpine-sh FROM quay.io/sshnaidm1/alpine-sh
RUN echo "Hello2 World" > /tmp/hello2.txt RUN echo "Hello2 World" > /tmp/hello2.txt
file: /var/tmp/build/Dockerfile file: /var/tmp/build/Dockerfile
force: true force: true
@ -589,7 +589,7 @@
state: absent state: absent
loop: loop:
- docker.io/library/ubuntu - docker.io/library/ubuntu
- quay.io/coreos/alpine-sh - quay.io/sshnaidm1/alpine-sh
- quay.io/coreos/etcd:v3.3.11 - quay.io/coreos/etcd:v3.3.11
- quay.io/coreos/etcd:v3.5.19 - quay.io/coreos/etcd:v3.5.19
- localhost/testimage - localhost/testimage