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.
1 parent 28ebff1 commit 6615f6aCopy full SHA for 6615f6a
.github/workflows/e2e.yaml
@@ -48,6 +48,25 @@ jobs:
48
with:
49
name: konnectivity-agent
50
path: _output/konnectivity-agent.tar
51
+ kind-e2e:
52
+ name: kind-e2e
53
+ runs-on: ubuntu-20.04
54
+ timeout-minutes: 100
55
+ steps:
56
+ - name: Check out code
57
+ uses: actions/checkout@v4
58
+ - name: Set up Go
59
+ uses: actions/setup-go@v5
60
+ with:
61
+ go-version-file: go.mod
62
+ id: go
63
+ - name: Install kind
64
+ run: |
65
+ curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-linux-amd64
66
+ chmod +x ./kind
67
+ sudo mv./kind /usr/local/bin/kind
68
+ - name: Run e2e tests
69
+ run: make test-e2e
70
e2e:
71
name: e2e
72
runs-on: ubuntu-20.04
0 commit comments