Skip to content

Commit 86bd1ed

Browse files
authored
fix: upgrade upstream test env to 1.28.0 (#657)
1 parent 0a45072 commit 86bd1ed

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
REGISTRY ?= ghcr.io
2-
KIND_IMAGE ?= kindest/node:v1.25.11
2+
KIND_IMAGE ?= kindest/node:v1.28.0
33
ifndef TAG
44
TAG ?= $(shell git rev-parse --short=7 HEAD)
55
endif
@@ -44,7 +44,7 @@ GOLANGCI_LINT_BIN := golangci-lint
4444
GOLANGCI_LINT := $(abspath $(TOOLS_BIN_DIR)/$(GOLANGCI_LINT_BIN)-$(GOLANGCI_LINT_VER))
4545

4646
# ENVTEST_K8S_VERSION refers to the version of k8s binary assets to be downloaded by envtest binary.
47-
ENVTEST_K8S_VERSION = 1.26.1
47+
ENVTEST_K8S_VERSION = 1.28.0
4848
# ENVTEST_VER is the version of the ENVTEST binary
4949
ENVTEST_VER = latest
5050
ENVTEST_BIN := setup-envtest

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export this variable which specifies the number of member clusters that will be
4141
export MEMBER_CLUSTER_COUNT=1
4242
```
4343

44-
from the root directory of the repo run the following command, by default a hub cluster gets created which is the control plane for fleet (**The makefile uses kindest/node:v1.25.11**)
44+
from the root directory of the repo run the following command, by default a hub cluster gets created which is the control plane for fleet (**The makefile uses kindest/node:v1.28.0**)
4545

4646
```shell
4747
make setup-clusters

test/e2e/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -o pipefail
66

77
# Before updating the default kind image to use, verify that the version is supported
88
# by the current kind release.
9-
KIND_IMAGE="${KIND_IMAGE:-kindest/node:v1.25.11}"
9+
KIND_IMAGE="${KIND_IMAGE:-kindest/node:v1.28.0}"
1010
KUBECONFIG="${KUBECONFIG:-$HOME/.kube/config}"
1111
MEMBER_CLUSTER_COUNT=$1
1212

0 commit comments

Comments
 (0)