Skip to content

Commit

Permalink
fix: upgrade upstream test env to 1.28.0 (Azure#657)
Browse files Browse the repository at this point in the history
  • Loading branch information
britaniar authored Jan 18, 2024
1 parent 0a45072 commit 86bd1ed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
REGISTRY ?= ghcr.io
KIND_IMAGE ?= kindest/node:v1.25.11
KIND_IMAGE ?= kindest/node:v1.28.0
ifndef TAG
TAG ?= $(shell git rev-parse --short=7 HEAD)
endif
Expand Down Expand Up @@ -44,7 +44,7 @@ GOLANGCI_LINT_BIN := golangci-lint
GOLANGCI_LINT := $(abspath $(TOOLS_BIN_DIR)/$(GOLANGCI_LINT_BIN)-$(GOLANGCI_LINT_VER))

# ENVTEST_K8S_VERSION refers to the version of k8s binary assets to be downloaded by envtest binary.
ENVTEST_K8S_VERSION = 1.26.1
ENVTEST_K8S_VERSION = 1.28.0
# ENVTEST_VER is the version of the ENVTEST binary
ENVTEST_VER = latest
ENVTEST_BIN := setup-envtest
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export this variable which specifies the number of member clusters that will be
export MEMBER_CLUSTER_COUNT=1
```

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**)
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**)

```shell
make setup-clusters
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -o pipefail

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

Expand Down

0 comments on commit 86bd1ed

Please sign in to comment.