Skip to content

Commit 69e6a5d

Browse files
authored
update dependencies to support k8s 1.33 (#6966)
Signed-off-by: Adam D. Cornett <adc@redhat.com>
1 parent 7b18fc9 commit 69e6a5d

File tree

3 files changed

+350
-349
lines changed

3 files changed

+350
-349
lines changed

Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ export IMAGE_VERSION = v1.40.0
99
export SIMPLE_VERSION = $(shell (test "$(shell git describe --tags)" = "$(shell git describe --tags --abbrev=0)" && echo $(shell git describe --tags)) || echo $(shell git describe --tags --abbrev=0)+git)
1010
export GIT_VERSION = $(shell git describe --dirty --tags --always)
1111
export GIT_COMMIT = $(shell git rev-parse HEAD)
12-
export K8S_VERSION = 1.32.0
12+
export K8S_VERSION = 1.33.1
13+
export KIND_VERSION = 0.29.0
1314

1415
# Build settings
1516
export TOOLS_DIR = tools/bin
@@ -185,12 +186,12 @@ cluster-create::
185186

186187
.PHONY: dev-install
187188
dev-install::
188-
$(SCRIPTS_DIR)/fetch kind 0.24.0
189+
$(SCRIPTS_DIR)/fetch kind $(KIND_VERSION)
189190
$(SCRIPTS_DIR)/fetch kubectl $(K8S_VERSION) # Install kubectl AFTER envtest because envtest includes its own kubectl binary
190191

191192
.PHONY: test-e2e-teardown
192193
test-e2e-teardown:
193-
$(SCRIPTS_DIR)/fetch kind 0.24.0
194+
$(SCRIPTS_DIR)/fetch kind $(KIND_VERSION)
194195
$(TOOLS_DIR)/kind delete cluster --name $(KIND_CLUSTER)
195196
rm -f $(KUBECONFIG)
196197

0 commit comments

Comments
 (0)