This repository was archived by the owner on Aug 12, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +15
-24
lines changed Expand file tree Collapse file tree 2 files changed +15
-24
lines changed Original file line number Diff line number Diff line change @@ -5,15 +5,29 @@ updates:
5
5
directory : " /"
6
6
schedule :
7
7
interval : " daily"
8
+ commit-message :
9
+ prefix : " :seedling:"
8
10
9
11
# Maintain dependencies for Go modules.
10
12
- package-ecosystem : " gomod"
11
13
directory : " /"
12
14
schedule :
13
15
interval : " daily"
14
-
16
+ commit-message :
17
+ prefix : " :seedling:"
18
+
19
+ # Maintain e2e test Go modules
20
+ - package-ecosystem : " gomod"
21
+ directory : " /test/e2e"
22
+ schedule :
23
+ interval : " daily"
24
+ commit-message :
25
+ prefix : " :seedling:"
26
+
15
27
# Maintain dependencies for Docker images.
16
28
- package-ecosystem : " docker"
17
29
directory : " /"
18
30
schedule :
19
31
interval : " daily"
32
+ commit-message :
33
+ prefix : " :seedling:"
Original file line number Diff line number Diff line change @@ -88,15 +88,6 @@ GINKGO_VER := v1.16.5
88
88
GINKGO_BIN := ginkgo
89
89
GINKGO := $(TOOLS_BIN_DIR ) /$(GINKGO_BIN ) -$(GINKGO_VER )
90
90
91
- # Sync to version that matches k8s.io/* verisons in https://github.com/kubernetes-sigs/cluster-api/blob/v{VERSION}/go.mod
92
- # KUBECTL_VER := v1.21.2
93
- # KUBECTL_BIN := kubectl
94
- # KUBECTL := $(TOOLS_BIN_DIR)/$(KUBECTL_BIN)-$(KUBECTL_VER)
95
-
96
- # KIND_VER := v0.11.1
97
- # KIND_BIN := kind
98
- # KIND := $(TOOLS_BIN_DIR)/$(KIND_BIN)-$(KIND_VER)
99
-
100
91
TIMEOUT := $(shell command -v timeout || command -v gtimeout)
101
92
102
93
# Define Docker related variables. Releases should modify and double check these vars.
@@ -245,20 +236,6 @@ $(CONVERSION_GEN): ## Build conversion-gen.
245
236
$(GINKGO ) : # # Build ginkgo.
246
237
GOBIN=$(TOOLS_BIN_DIR ) $(GO_INSTALL ) github.com/onsi/ginkgo/ginkgo $(GINKGO_BIN ) $(GINKGO_VER )
247
238
248
- # $(KUBECTL): ## Build kubectl
249
- # mkdir -p $(TOOLS_BIN_DIR)
250
- # rm -f "$(KUBECTL)*"
251
- # curl --retry $(CURL_RETRIES) -fsL https://dl.k8s.io/release/$(KUBECTL_VER)/bin/$(GOOS)/$(GOARCH)/kubectl -o $(KUBECTL)
252
- # ln -sf "$(KUBECTL)" "$(TOOLS_BIN_DIR)/$(KUBECTL_BIN)"
253
- # chmod +x "$(TOOLS_BIN_DIR)/$(KUBECTL_BIN)" "$(KUBECTL)"
254
-
255
- # $(KIND): ## Build kind
256
- # mkdir -p $(TOOLS_BIN_DIR)
257
- # rm -f "$(KIND)*"
258
- # curl --retry $(CURL_RETRIES) -fsL https://github.com/kubernetes-sigs/kind/releases/download/${KIND_VER}/kind-${GOOS}-${GOARCH} -o ${KIND}
259
- # ln -sf "$(KIND)" "$(TOOLS_BIN_DIR)/$(KIND_BIN)"
260
- # chmod +x "$(TOOLS_BIN_DIR)/$(KIND_BIN)" "$(KIND)"
261
-
262
239
# # --------------------------------------
263
240
# # Linting
264
241
# # --------------------------------------
You can’t perform that action at this time.
0 commit comments