We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 925f39a + 98cc67a commit c328fb7Copy full SHA for c328fb7
.github/workflows/podman.yml
@@ -14,7 +14,7 @@ permissions:
14
jobs:
15
podman:
16
name: Podman
17
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-24.04
18
timeout-minutes: 30
19
strategy:
20
fail-fast: false
@@ -87,9 +87,11 @@ jobs:
87
sudo kubectl get nodes -o wide
88
sudo kubectl get pods -A
89
90
- # TODO: implement this
+ # TODO: https://github.com/kubernetes-sigs/kind/issues/2038
91
- name: Load docker image
92
- run: sudo KIND_EXPERIMENTAL_PROVIDER=podman kind load docker-image busybox:2
+ run: |
93
+ sudo podman pull busybox
94
+ sudo KIND_EXPERIMENTAL_PROVIDER=podman kind load docker-image busybox
95
continue-on-error: true
96
97
- name: Export logs
0 commit comments