Skip to content

Commit 1d71617

Browse files
authored
CI: Update Kubernetes. (#13392)
1 parent c724415 commit 1d71617

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ jobs:
172172

173173
- name: Prepare Host
174174
run: |
175-
curl -LO https://dl.k8s.io/release/v1.32.4/bin/linux/amd64/kubectl
175+
curl -LO https://dl.k8s.io/release/v1.33.1/bin/linux/amd64/kubectl
176176
chmod +x ./kubectl
177177
sudo mv ./kubectl /usr/local/bin/kubectl
178178
@@ -271,7 +271,7 @@ jobs:
271271
strategy:
272272
fail-fast: false
273273
matrix:
274-
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.3]
274+
k8s: [v1.29.14, v1.30.13, v1.31.9, v1.32.5, v1.33.1]
275275

276276
steps:
277277
- name: Checkout code
@@ -303,7 +303,7 @@ jobs:
303303
strategy:
304304
fail-fast: false
305305
matrix:
306-
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.3]
306+
k8s: [v1.29.14, v1.30.13, v1.31.9, v1.32.5, v1.33.1]
307307
uses: ./.github/workflows/zz-tmpl-k8s-e2e.yaml
308308
with:
309309
k8s-version: ${{ matrix.k8s }}
@@ -318,7 +318,7 @@ jobs:
318318
strategy:
319319
fail-fast: false
320320
matrix:
321-
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.3]
321+
k8s: [v1.29.14, v1.30.13, v1.31.9, v1.32.5, v1.33.1]
322322
uses: ./.github/workflows/zz-tmpl-k8s-e2e.yaml
323323
with:
324324
k8s-version: ${{ matrix.k8s }}

.github/workflows/images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
strategy:
137137
fail-fast: false
138138
matrix:
139-
k8s: [v1.28.15, v1.29.14, v1.30.10, v1.31.6, v1.32.3]
139+
k8s: [v1.29.14, v1.30.13, v1.31.9, v1.32.5, v1.33.1]
140140
steps:
141141
- name: Checkout
142142
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.3@sha256:b36e76b4ad37b88539ce5e07425f77b29f73a8eaaebf3f1a8bc9c764401d118c}
67+
export K8S_VERSION=${K8S_VERSION:-v1.33.1@sha256:050072256b9a903bd914c0b2866828150cb229cea0efe5892e2b644d5dd3b34f}
6868

6969
KIND_CLUSTER_NAME="ingress-nginx-dev"
7070

images/test-runner/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ build: builder
3535
--build-arg BASE_IMAGE=$(BASE_IMAGE) \
3636
--build-arg GOLANG_VERSION=$(GOLANG_VERSION) \
3737
--build-arg ETCD_VERSION=3.5.13-0 \
38-
--build-arg K8S_RELEASE=v1.32.4 \
38+
--build-arg K8S_RELEASE=v1.33.1 \
3939
--build-arg RESTY_CLI_VERSION=0.27 \
4040
--build-arg RESTY_CLI_SHA=e5f4f3128af49ba5c4d039d0554e5ae91bbe05866f60eccfa96d3653274bff90 \
4141
--build-arg LUAROCKS_VERSION=3.8.0 \

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.3@sha256:b36e76b4ad37b88539ce5e07425f77b29f73a8eaaebf3f1a8bc9c764401d118c}
65+
export K8S_VERSION=${K8S_VERSION:-v1.33.1@sha256:050072256b9a903bd914c0b2866828150cb229cea0efe5892e2b644d5dd3b34f}
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.3@sha256:b36e76b4ad37b88539ce5e07425f77b29f73a8eaaebf3f1a8bc9c764401d118c}
66+
export K8S_VERSION=${K8S_VERSION:-v1.33.1@sha256:050072256b9a903bd914c0b2866828150cb229cea0efe5892e2b644d5dd3b34f}
6767

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

0 commit comments

Comments
 (0)