Skip to content

Commit c7fb821

Browse files
authored
CI: Update KIND to v1.32.3. (#13022)
1 parent b532656 commit c7fb821

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ jobs:
270270

271271
strategy:
272272
matrix:
273-
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.2]
273+
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.3]
274274

275275
steps:
276276
- name: Checkout code
@@ -301,7 +301,7 @@ jobs:
301301
(needs.changes.outputs.go == 'true') || (needs.changes.outputs.baseimage == 'true') || ${{ github.event.workflow_dispatch.run_e2e == 'true' }}
302302
strategy:
303303
matrix:
304-
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.2]
304+
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.3]
305305
uses: ./.github/workflows/zz-tmpl-k8s-e2e.yaml
306306
with:
307307
k8s-version: ${{ matrix.k8s }}
@@ -315,7 +315,7 @@ jobs:
315315
(needs.changes.outputs.go == 'true') || (needs.changes.outputs.baseimage == 'true') || ${{ github.event.workflow_dispatch.run_e2e == 'true' }}
316316
strategy:
317317
matrix:
318-
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.2]
318+
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.3]
319319
uses: ./.github/workflows/zz-tmpl-k8s-e2e.yaml
320320
with:
321321
k8s-version: ${{ matrix.k8s }}

.github/workflows/images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
(needs.changes.outputs.kube-webhook-certgen == 'true')
136136
strategy:
137137
matrix:
138-
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.2]
138+
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.3]
139139
steps:
140140
- name: Checkout
141141
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

build/dev-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ echo "[dev-env] building image"
6464
make build image
6565
docker tag "${REGISTRY}/controller:${TAG}" "${DEV_IMAGE}"
6666

67-
export K8S_VERSION=${K8S_VERSION:-v1.32.2@sha256:f226345927d7e348497136874b6d207e0b32cc52154ad8323129352923a3142f}
67+
export K8S_VERSION=${K8S_VERSION:-v1.32.3@sha256:b36e76b4ad37b88539ce5e07425f77b29f73a8eaaebf3f1a8bc9c764401d118c}
6868

6969
KIND_CLUSTER_NAME="ingress-nginx-dev"
7070

test/e2e/run-chart-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export KUBECONFIG="${KUBECONFIG:-$HOME/.kube/kind-config-$KIND_CLUSTER_NAME}"
6262
if [ "${SKIP_CLUSTER_CREATION:-false}" = "false" ]; then
6363
echo "[dev-env] creating Kubernetes cluster with kind"
6464

65-
export K8S_VERSION=${K8S_VERSION:-v1.32.2@sha256:f226345927d7e348497136874b6d207e0b32cc52154ad8323129352923a3142f}
65+
export K8S_VERSION=${K8S_VERSION:-v1.32.3@sha256:b36e76b4ad37b88539ce5e07425f77b29f73a8eaaebf3f1a8bc9c764401d118c}
6666

6767
kind create cluster \
6868
--verbosity=${KIND_LOG_LEVEL} \

test/e2e/run-kind-e2e.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ echo "Running e2e with nginx base image ${NGINX_BASE_IMAGE}"
6363
if [ "${SKIP_CLUSTER_CREATION}" = "false" ]; then
6464
echo "[dev-env] creating Kubernetes cluster with kind"
6565

66-
export K8S_VERSION=${K8S_VERSION:-v1.32.2@sha256:f226345927d7e348497136874b6d207e0b32cc52154ad8323129352923a3142f}
66+
export K8S_VERSION=${K8S_VERSION:-v1.32.3@sha256:b36e76b4ad37b88539ce5e07425f77b29f73a8eaaebf3f1a8bc9c764401d118c}
6767

6868
# delete the cluster if it exists
6969
if kind get clusters | grep "${KIND_CLUSTER_NAME}"; then

0 commit comments

Comments
 (0)