File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ GO_INSTALL := ./scripts/go_install.sh
44
44
# Binaries.
45
45
CONTROLLER_GEN := $(TOOLS_BIN_DIR ) /controller-gen
46
46
CONVERSION_GEN := $(TOOLS_BIN_DIR ) /conversion-gen
47
- DEFAULTER_GEN := $(TOOLS_BIN_DIR ) /defaulter-gen
48
47
ENVSUBST := $(TOOLS_BIN_DIR ) /envsubst
49
48
GINKGO := $(TOOLS_BIN_DIR ) /ginkgo
50
49
GOJQ := $(TOOLS_BIN_DIR ) /gojq
@@ -262,7 +261,7 @@ generate: ## Generate code
262
261
263
262
.PHONY : generate-go
264
263
generate-go : $(MOCKGEN )
265
- $(MAKE ) -B $(CONTROLLER_GEN ) $(CONVERSION_GEN ) $( DEFAULTER_GEN )
264
+ $(MAKE ) -B $(CONTROLLER_GEN ) $(CONVERSION_GEN )
266
265
$(CONTROLLER_GEN ) \
267
266
paths=./api/... \
268
267
object:headerFile=./hack/boilerplate/boilerplate.generatego.txt
Original file line number Diff line number Diff line change @@ -69,10 +69,6 @@ CONVERSION_GEN := $(BIN_DIR)/conversion-gen
69
69
$(CONVERSION_GEN ) : go.mod go.sum | $(BIN_DIR )
70
70
go build -tags=tools -o $@ k8s.io/code-generator/cmd/conversion-gen
71
71
72
- DEFAULTER_GEN := $(BIN_DIR ) /defaulter-gen
73
- $(DEFAULTER_GEN ) : go.mod go.sum | $(BIN_DIR )
74
- go build -tags=tools -o $@ k8s.io/code-generator/cmd/defaulter-gen
75
-
76
72
ENVSUBST := $(BIN_DIR ) /envsubst
77
73
$(ENVSUBST ) : go.mod go.sum | $(BIN_DIR ) # Build envsubst from tools folder.
78
74
go build -tags=tools -o $@ github.com/a8m/envsubst/cmd/envsubst
You can’t perform that action at this time.
0 commit comments