From 2f5afc5cb5024709dbae44c35e5bb86e8eda8122 Mon Sep 17 00:00:00 2001 From: Simon Pasquier Date: Wed, 16 Aug 2023 16:06:10 +0200 Subject: [PATCH] chore: use helm/kind-action helm/kind-action seems to be more maintained than engineerd/setup-kind. Signed-off-by: Simon Pasquier --- .github/workflows/ci.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f020c10d7b..5f222526e0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -92,13 +92,14 @@ jobs: - uses: actions/setup-go@v4 with: go-version: ${{ env.golang-version }} - - name: Start KinD - uses: engineerd/setup-kind@v0.5.0 + - name: Start kind cluster + uses: helm/kind-action@v1.7.0 with: version: ${{ env.kind-version }} - image: ${{ matrix.kind-image }} + node_image: ${{ matrix.kind-image }} wait: 10s # Without default CNI, control-plane doesn't get ready until Cilium is installed config: .github/workflows/kind/config.yml + cluster_name: e2e - name: Install kube-router for NetworkPolicy support run: | kubectl apply -f .github/workflows/kind/kube-router.yaml