Skip to content

Commit c328fb7

Browse files
authored
Merge pull request #3888 from BenTheElder/podman
podman actions fixup
2 parents 925f39a + 98cc67a commit c328fb7

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/podman.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414
jobs:
1515
podman:
1616
name: Podman
17-
runs-on: ubuntu-22.04
17+
runs-on: ubuntu-24.04
1818
timeout-minutes: 30
1919
strategy:
2020
fail-fast: false
@@ -87,9 +87,11 @@ jobs:
8787
sudo kubectl get nodes -o wide
8888
sudo kubectl get pods -A
8989
90-
# TODO: implement this
90+
# TODO: https://github.com/kubernetes-sigs/kind/issues/2038
9191
- name: Load docker image
92-
run: sudo KIND_EXPERIMENTAL_PROVIDER=podman kind load docker-image busybox:2
92+
run: |
93+
sudo podman pull busybox
94+
sudo KIND_EXPERIMENTAL_PROVIDER=podman kind load docker-image busybox
9395
continue-on-error: true
9496

9597
- name: Export logs

0 commit comments

Comments
 (0)