From c3c6e8c660980c8cb9f755f60fc76eee4fe13e7a Mon Sep 17 00:00:00 2001 From: Felix Matouschek Date: Wed, 10 Jun 2026 10:59:42 +0200 Subject: [PATCH] fix(ci): update e2e-setup versions, pin K8s 1.35 Update kind v0.31.0 -> v0.32.0 and KubeVirt v1.8.2 -> v1.8.3. Pin the kind node image to K8s 1.35 since KubeVirt v1.8 does not yet support K8s 1.36 (kind v0.32.0 defaults to 1.36). Supersedes: #243 Co-Authored-By: Claude Opus 4.6 Signed-off-by: Felix Matouschek --- .github/workflows/integration.yml | 2 +- hack/e2e-setup.sh | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 24c3d38..16d8b20 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -156,7 +156,7 @@ jobs: if: inputs.ansible_test_targets != '' uses: helm/kind-action@v1.14.0 with: - version: v0.31.0 + version: v0.32.0 install_only: true - name: Deploy kubevirt diff --git a/hack/e2e-setup.sh b/hack/e2e-setup.sh index 90272c4..67e5b80 100755 --- a/hack/e2e-setup.sh +++ b/hack/e2e-setup.sh @@ -23,12 +23,13 @@ set_default_params() { BIN_DIR=${BIN_DIR:-$DIR/../bin} KIND=${KIND:-$BIN_DIR/kind} - KIND_VERSION=${KIND_VERSION:-v0.31.0} + KIND_VERSION=${KIND_VERSION:-v0.32.0} + KIND_NODE_IMAGE=${KIND_NODE_IMAGE:-kindest/node:v1.35.5} KUBECTL=${KUBECTL:-$BIN_DIR/kubectl} KUBECTL_VERSION=${KUBECTL_VERSION:-v1.35.1} - KUBEVIRT_VERSION=${KUBEVIRT_VERSION:-v1.8.2} + KUBEVIRT_VERSION=${KUBEVIRT_VERSION:-v1.8.3} KUBEVIRT_CDI_VERSION=${KUBEVIRT_CDI_VERSION:-v1.65.0} KUBEVIRT_USE_EMULATION=${KUBEVIRT_USE_EMULATION:-"false"} @@ -127,7 +128,7 @@ create_registry() { create_cluster() { if [ "${OPT_CREATE_REGISTRY}" == true ]; then echo "Creating kind cluster with containerd registry config dir enabled" - cat <