1
0
Fork 0
mirror of https://github.com/containers/ansible-podman-collections.git synced 2026-02-04 07:11:49 +00:00

CI: fix review comments

Signed-off-by: Sagi Shnaidman <sshnaidm@redhat.com>
This commit is contained in:
Sagi Shnaidman 2026-01-17 17:43:21 +02:00 committed by Sergey
parent d6f395d18e
commit a5d6a30c92
2 changed files with 6 additions and 8 deletions

View file

@ -56,22 +56,19 @@
- distro == 'Ubuntu24'
block:
- name: Remove existing golang-github-containers-common
- name: Remove existing container packages
package:
name:
- podman
- buildah
- skopeo
- crun
state: absent
- name: Remove existing golang-github-containers-common
package:
name: golang-github-containers-common
- golang-github-containers-common
state: absent
- name: Run autoremove
command: apt-get autoremove -y
ansible.builtin.apt:
autoremove: true
- name: Install podman
package:

View file

@ -58,7 +58,7 @@
assert:
that:
- image.image != {}
# - image.image.NamesHistory.0 == "registry.k8s.io/pause:latest" but in 5.7, NamesHistory is null
# - image.image.NamesHistory.0 == "registry.k8s.io/pause:latest" bug in 5.7, NamesHistory is null
- name: Pull images
containers.podman.podman_image:
@ -87,5 +87,6 @@
assert:
that:
- image.image != {}
# bug in 5.7, NamesHistory is null
# - '"registry.k8s.io/coredns/coredns:v1.9.3" in image.image.NamesHistory'
# - '"gcr.io/kubernetes-e2e-test-images/echoserver:2.2" in image.image.NamesHistory'