CI: Update KIND to v1.33.2. (#13647)

This commit is contained in:
Marco Ebert 2025-07-22 18:16:27 +02:00 committed by GitHub
parent cfd68daadd
commit cb5346e10e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 7 additions and 7 deletions

View File

@ -271,7 +271,7 @@ jobs:
strategy:
fail-fast: false
matrix:
k8s: [v1.29.14, v1.30.13, v1.31.9, v1.32.5, v1.33.1]
k8s: [v1.29.14, v1.30.13, v1.31.9, v1.32.5, v1.33.2]
steps:
- name: Checkout code
@ -303,7 +303,7 @@ jobs:
strategy:
fail-fast: false
matrix:
k8s: [v1.29.14, v1.30.13, v1.31.9, v1.32.5, v1.33.1]
k8s: [v1.29.14, v1.30.13, v1.31.9, v1.32.5, v1.33.2]
uses: ./.github/workflows/zz-tmpl-k8s-e2e.yaml
with:
k8s-version: ${{ matrix.k8s }}
@ -318,7 +318,7 @@ jobs:
strategy:
fail-fast: false
matrix:
k8s: [v1.29.14, v1.30.13, v1.31.9, v1.32.5, v1.33.1]
k8s: [v1.29.14, v1.30.13, v1.31.9, v1.32.5, v1.33.2]
uses: ./.github/workflows/zz-tmpl-k8s-e2e.yaml
with:
k8s-version: ${{ matrix.k8s }}

View File

@ -136,7 +136,7 @@ jobs:
strategy:
fail-fast: false
matrix:
k8s: [v1.29.14, v1.30.13, v1.31.9, v1.32.5, v1.33.1]
k8s: [v1.29.14, v1.30.13, v1.31.9, v1.32.5, v1.33.2]
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

View File

@ -64,7 +64,7 @@ echo "[dev-env] building image"
make build image
docker tag "${REGISTRY}/controller:${TAG}" "${DEV_IMAGE}"
export K8S_VERSION=${K8S_VERSION:-v1.33.1@sha256:050072256b9a903bd914c0b2866828150cb229cea0efe5892e2b644d5dd3b34f}
export K8S_VERSION=${K8S_VERSION:-v1.33.2@sha256:c55080dc5be4f2cc242e6966fdf97bb62282e1cd818a28223cf536db8b0fddf4}
KIND_CLUSTER_NAME="ingress-nginx-dev"

View File

@ -62,7 +62,7 @@ export KUBECONFIG="${KUBECONFIG:-$HOME/.kube/kind-config-$KIND_CLUSTER_NAME}"
if [ "${SKIP_CLUSTER_CREATION:-false}" = "false" ]; then
echo "[dev-env] creating Kubernetes cluster with kind"
export K8S_VERSION=${K8S_VERSION:-v1.33.1@sha256:050072256b9a903bd914c0b2866828150cb229cea0efe5892e2b644d5dd3b34f}
export K8S_VERSION=${K8S_VERSION:-v1.33.2@sha256:c55080dc5be4f2cc242e6966fdf97bb62282e1cd818a28223cf536db8b0fddf4}
kind create cluster \
--verbosity=${KIND_LOG_LEVEL} \

View File

@ -63,7 +63,7 @@ echo "Running e2e with nginx base image ${NGINX_BASE_IMAGE}"
if [ "${SKIP_CLUSTER_CREATION}" = "false" ]; then
echo "[dev-env] creating Kubernetes cluster with kind"
export K8S_VERSION=${K8S_VERSION:-v1.33.1@sha256:050072256b9a903bd914c0b2866828150cb229cea0efe5892e2b644d5dd3b34f}
export K8S_VERSION=${K8S_VERSION:-v1.33.2@sha256:c55080dc5be4f2cc242e6966fdf97bb62282e1cd818a28223cf536db8b0fddf4}
# delete the cluster if it exists
if kind get clusters | grep "${KIND_CLUSTER_NAME}"; then