Skip to content

Commit b1c7dcf

Browse files
committed
Add step to pull pause image
1 parent b23b96a commit b1c7dcf

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/test_suite.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,17 @@ jobs:
2424
- name: Pull selenium-standalone:latest
2525
run: podman pull selenium/standalone-${{ matrix.browser }}:latest
2626

27-
- name: Pull docker.io/library/nginx:alpine
27+
- name: Pull nginx:alpine
2828
run: podman pull docker.io/library/nginx:alpine
2929

30+
- name: Pull pause
31+
run: |
32+
# something screwy is going on in the github kube node
33+
# seeing 404s pulling from k8s.gcr, which was deprecated a year ago anyway
34+
# the registry name is hardcoded somewhere on the infra side, but the pull from the new registry works consistently
35+
podman pull registry.k8s.io/pause:3.5
36+
podman tag registry.k8s.io/pause:3.5 k8s.gcr.io/pause:3.5
37+
3038
- name: Checkout
3139
uses: actions/checkout@v4
3240

0 commit comments

Comments
 (0)