From 191023ef9ad892caa9a4174784be764344ba3a6b Mon Sep 17 00:00:00 2001 From: Zach Aller Date: Fri, 19 Jul 2024 10:41:45 -0500 Subject: [PATCH] switch to kind Signed-off-by: Zach Aller --- .github/workflows/ci-e2e.yaml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-e2e.yaml b/.github/workflows/ci-e2e.yaml index bda8313..611fefc 100644 --- a/.github/workflows/ci-e2e.yaml +++ b/.github/workflows/ci-e2e.yaml @@ -26,7 +26,17 @@ jobs: go.sum - name: Create k8s Kind Cluster uses: helm/kind-action@v1 - version: v0.23.0 + with: + k8s-version: v${{ matrix.kubernetes-minor-version }} + name: kind-${{ matrix.kubernetes-minor-version }} + config: | + kind: Cluster + apiVersion: kind.x-k8s.io/v1alpha4 + nodes: + - role: control-plane + - role: worker + - role: worker + version: v0.23.0 - name: Checkout Repo uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # pin@v4 - name: Get dependencies