File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export IMAGE_VERSION = v1.39.2
99export 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)
1010export GIT_VERSION = $(shell git describe --dirty --tags --always)
1111export GIT_COMMIT = $(shell git rev-parse HEAD)
12- export K8S_VERSION = 1.32.2
12+ export K8S_VERSION = 1.31.0
1313
1414# Build settings
1515export TOOLS_DIR = tools/bin
@@ -183,12 +183,12 @@ cluster-create::
183183
184184.PHONY : dev-install
185185dev-install ::
186- $(SCRIPTS_DIR ) /fetch kind 0.26 .0
186+ $(SCRIPTS_DIR ) /fetch kind 0.24 .0
187187 $(SCRIPTS_DIR ) /fetch kubectl $(K8S_VERSION ) # Install kubectl AFTER envtest because envtest includes its own kubectl binary
188188
189189.PHONY : test-e2e-teardown
190190test-e2e-teardown :
191- $(SCRIPTS_DIR ) /fetch kind 0.26 .0
191+ $(SCRIPTS_DIR ) /fetch kind 0.24 .0
192192 $(TOOLS_DIR ) /kind delete cluster --name $(KIND_CLUSTER )
193193 rm -f $(KUBECONFIG )
194194
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ fetch() {
2828 ;;
2929 " kubectl" )
3030 ver_cmd=" ${DEST} /kubectl version 2>/dev/null | grep Client | cut -d' ' -f5 | sed 's/\w\+:\" v\(.*\)\" ,/\1/'"
31- fetch_cmd=" (curl -sSfLo '${DEST} /kubectl' 'https://dl.k8s.io /release/v${ver} /bin/${os} /${arch} /kubectl' && chmod +x ${DEST} /kubectl)"
31+ fetch_cmd=" (curl -sSfLo '${DEST} /kubectl' 'https://storage.googleapis.com/kubernetes-release /release/v${ver} /bin/${os} /${arch} /kubectl' && chmod +x ${DEST} /kubectl)"
3232 ;;
3333 " goreleaser" )
3434 ver_cmd=" ${DEST} /goreleaser --version 2>/dev/null | grep version | cut -d' ' -f3"
You can’t perform that action at this time.
0 commit comments