From 47fb6f53f9d8f840f67af5a487debdd064556aa5 Mon Sep 17 00:00:00 2001 From: Ben Ash Date: Mon, 11 Mar 2024 12:59:13 -0400 Subject: [PATCH 1/2] Test against k8s 1.29 Drop k8s 1.24 --- .github/workflows/acceptance.yaml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/acceptance.yaml b/.github/workflows/acceptance.yaml index 75de9c231..d5b2b617f 100644 --- a/.github/workflows/acceptance.yaml +++ b/.github/workflows/acceptance.yaml @@ -5,7 +5,7 @@ jobs: strategy: fail-fast: false matrix: - kind-k8s-version: [1.24.15, 1.25.11, 1.26.6, 1.27.3, 1.28.0] + kind-k8s-version: [1.25.16, 1.26.14, 1.27.11, 1.28.7, 1.29.2] runs-on: ubuntu-latest steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 diff --git a/Makefile b/Makefile index 560022064..96503eb69 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ LOCAL_ACCEPTANCE_TESTS?=false KIND_CLUSTER_NAME?=vault-helm # kind k8s version -KIND_K8S_VERSION?=v1.26.3 +KIND_K8S_VERSION?=v1.29.2 # Generate json schema for chart values. See test/README.md for more details. values-schema: From 6b6cf6f4c22e784780ed3616925309bfa10d7e37 Mon Sep 17 00:00:00 2001 From: Ben Ash Date: Mon, 11 Mar 2024 14:07:38 -0400 Subject: [PATCH 2/2] Use latest kind version v0.22.0 --- .github/workflows/acceptance.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/acceptance.yaml b/.github/workflows/acceptance.yaml index d5b2b617f..2335c9f35 100644 --- a/.github/workflows/acceptance.yaml +++ b/.github/workflows/acceptance.yaml @@ -16,7 +16,7 @@ jobs: with: config: test/kind/config.yaml node_image: kindest/node:v${{ matrix.kind-k8s-version }} - version: v0.20.0 + version: v0.22.0 - run: bats --tap --timing ./test/acceptance env: VAULT_LICENSE_CI: ${{ secrets.VAULT_LICENSE_CI }}