Merge pull request #246 from 0xFelix/fix-kind-k8s-version

fix(ci): update e2e-setup versions, pin K8s 1.35
This commit is contained in:
kubevirt-bot
2026-06-10 11:18:24 +02:00
committed by GitHub
2 changed files with 6 additions and 5 deletions

View File

@@ -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

View File

@@ -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 <<EOF | DOCKER_HOST=unix://${_cri_socket} ${KIND} create cluster --wait 2m --name "${CLUSTER_NAME}" --config=-
cat <<EOF | DOCKER_HOST=unix://${_cri_socket} ${KIND} create cluster --wait 2m --name "${CLUSTER_NAME}" --image "${KIND_NODE_IMAGE}" --config=-
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
containerdConfigPatches:
@@ -137,7 +138,7 @@ containerdConfigPatches:
EOF
else
echo "Creating cluster with kind"
DOCKER_HOST=unix://${_cri_socket} ${KIND} create cluster --wait 2m --name "${CLUSTER_NAME}"
DOCKER_HOST=unix://${_cri_socket} ${KIND} create cluster --wait 2m --name "${CLUSTER_NAME}" --image "${KIND_NODE_IMAGE}"
fi
echo "Waiting for the network to be ready"