Skip to content

Commit 51313fd

Browse files
committed
Load prebuilt konnectivity images
1 parent 2796ac4 commit 51313fd

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/e2e.yaml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,24 +62,30 @@ jobs:
6262
matrix:
6363
k8s: [ v1.27.11, v1.28.7, v1.29.2 ]
6464
steps:
65+
- name: Install kind
66+
run: |
67+
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-linux-amd64
68+
chmod +x ./kind
69+
sudo mv ./kind /usr/local/bin/kind
6570
- name: Check out code
6671
uses: actions/checkout@v4
6772
- name: Set up Go
6873
uses: actions/setup-go@v5
6974
with:
7075
go-version-file: go.mod
7176
id: go
72-
- uses: actions/download-artifact@v4
77+
- name: Download prebuilt konnectivity-server image
78+
uses: actions/download-artifact@v4
7379
with:
7480
name: konnectivity-server
75-
- uses: actions/download-artifact@v4
81+
- name: Download prebuilt konnectivity-agent image
82+
uses: actions/download-artifact@v4
7683
with:
7784
name: konnectivity-agent
78-
- name: Install kind
85+
- name: Load prebuilt konnectivity images
7986
run: |
80-
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-linux-amd64
81-
chmod +x ./kind
82-
sudo mv ./kind /usr/local/bin/kind
87+
docker load --input konnectivity-server.tar
88+
docker load --input konnectivity-agent.tar
8389
- name: Run e2e tests
8490
run: make test-e2e
8591
e2e:

0 commit comments

Comments
 (0)