diff --git a/ci/playbooks/pre.yml b/ci/playbooks/pre.yml index 6947993..fc266af 100644 --- a/ci/playbooks/pre.yml +++ b/ci/playbooks/pre.yml @@ -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: diff --git a/tests/integration/targets/podman_load/tasks/main.yml b/tests/integration/targets/podman_load/tasks/main.yml index 235e258..3a4961a 100644 --- a/tests/integration/targets/podman_load/tasks/main.yml +++ b/tests/integration/targets/podman_load/tasks/main.yml @@ -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'