You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* scaffold MeshFederation API and add codegen tools
* fix license headers
* add PROJECT_DIR to path of license file
* use -mod=readonly when installing controller-gen
* add manifests target to generate CRDs
* change project domain to openshift-service-mesh.io
* Run make manifests
* Generate CRDs and DeepCopy methods on src file changes
* Combine targets to generate CRDs and DeepCopy methods
build: deps $(PROTOBUF_GEN)$(DEEP_COPY_GEN)$(CRD_GEN)## Builds the project
40
47
go build -C $(PROJECT_DIR)/cmd/federation-controller -o $(PROJECT_DIR)/$(OUT_DIR)/federation-controller $(EXTRA_BUILD_ARGS)
41
48
42
49
.PHONY: test
@@ -123,43 +130,35 @@ $(PROTOC_GEN_DEEPCOPY):
123
130
$(KIND):
124
131
@GOBIN=$(LOCALBIN) go install -mod=readonly sigs.k8s.io/[email protected]
125
132
133
+
$(CONTROLLER_GEN):
134
+
GOBIN=$(LOCALBIN) go install -mod=readonly sigs.k8s.io/controller-tools/cmd/controller-gen@$(CONTROLLER_TOOLS_VERSION)
135
+
126
136
.PHONY: clean
127
-
clean:
137
+
clean:
128
138
@rm -rf $(LOCALBIN)$(PROJECT_DIR)/$(OUT_DIR)
129
139
130
140
##@ Code Gen
131
141
132
142
$(PROTOBUF_GEN): $(PROTOBUF_API_SRC)$(PROTOC)$(PROTOC_GEN_GO)$(PROTOC_GEN_GRPC)$(PROTOC_GEN_DEEPCOPY)## Generates Go files from protobuf-based API files
0 commit comments