Skip to content

Commit 15f7aae

Browse files
committed
chore (test-deps) : Bump envtest and Kubernetes binary used in tests
Signed-off-by: Rohan Kumar <[email protected]>
1 parent 9011cfa commit 15f7aae

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
@@ -242,9 +242,9 @@ $(LOCALBIN):
242242
## Tool Binaries
243243
CONTROLLER_GEN ?= $(LOCALBIN)/controller-gen
244244
CONTROLLER_GEN_VERSION = v0.15.0
245-
ENVTEST_VERSION = v0.0.0-20240320141353-395cfc7486e6
245+
ENVTEST_VERSION = v0.18.7
246246
ENVTEST ?= $(LOCALBIN)/setup-envtest
247-
ENVTEST_K8S_VERSION = 1.24.2
247+
ENVTEST_K8S_VERSION = 1.29.0
248248

249249
### controller-gen: Finds or downloads controller-gen
250250
# download controller-gen if necessary

controllers/controller/devworkspacerouting/suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ var _ = BeforeSuite(func() {
8888
filepath.Join(".", "testdata", "route.crd.yaml"),
8989
},
9090
ErrorIfCRDPathMissing: true,
91-
BinaryAssetsDirectory: filepath.Join("..", "..", "..", "bin", "k8s", "1.24.2-linux-amd64"),
91+
BinaryAssetsDirectory: filepath.Join("..", "..", "..", "bin", "k8s", "1.29.0-linux-amd64"),
9292
}
9393

9494
cfg, err := testEnv.Start()

controllers/workspace/suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ var _ = BeforeSuite(func() {
8989
testEnv = &envtest.Environment{
9090
CRDDirectoryPaths: []string{filepath.Join("..", "..", "deploy", "templates", "crd", "bases")},
9191
ErrorIfCRDPathMissing: true,
92-
BinaryAssetsDirectory: filepath.Join("..", "..", "bin", "k8s", "1.24.2-linux-amd64"),
92+
BinaryAssetsDirectory: filepath.Join("..", "..", "bin", "k8s", "1.29.0-linux-amd64"),
9393
}
9494

9595
cfg, err := testEnv.Start()

0 commit comments

Comments
 (0)