Skip to content

Commit

Permalink
Fix podman CI test container images (#804)
Browse files Browse the repository at this point in the history
Signed-off-by: Sagi Shnaidman <[email protected]>
  • Loading branch information
sshnaidm authored Jul 14, 2024
1 parent 3087fcc commit 3e303c7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/integration/targets/podman_load/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
executable: "{{ test_executable | default('podman') }}"
name: '{{ item }}'
loop:
- k8s.gcr.io/coredns:1.7.0
- k8s.gcr.io/echoserver:1.10
- registry.k8s.io/coredns/coredns:v1.9.3
- gcr.io/kubernetes-e2e-test-images/echoserver:2.2

- name: Clean up multifile
ansible.builtin.file:
Expand All @@ -75,7 +75,7 @@

- name: Create multi image file
shell: >-
podman save k8s.gcr.io/coredns:1.7.0 k8s.gcr.io/echoserver:1.10 -o /tmp/multi.tar
podman save registry.k8s.io/coredns/coredns:v1.9.3 gcr.io/kubernetes-e2e-test-images/echoserver:2.2 -o /tmp/multi.tar
- name: Load image from oci-dir multi image archive
containers.podman.podman_load:
Expand All @@ -87,5 +87,5 @@
assert:
that:
- image.image != {}
- '"k8s.gcr.io/coredns:1.7.0" in image.image.NamesHistory'
- '"k8s.gcr.io/echoserver:1.10" in image.image.NamesHistory'
- '"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'

0 comments on commit 3e303c7

Please sign in to comment.