@@ -154,10 +154,6 @@ defaults:
154154manifests : controller-gen # # Generate RBAC objects.
155155 $(CONTROLLER_GEN ) rbac:roleName=manager-role webhook paths=" ./..."
156156
157- .PHONY : generate
158- generate : controller-gen # # Generate code containing DeepCopy, DeepCopyInto, and DeepCopyObject method implementations.
159- $(CONTROLLER_GEN ) object:headerFile=" hack/boilerplate.go.txt" paths=" ./api/..."
160-
161157.PHONY : fmt
162158fmt : # # Run go fmt against code.
163159 go fmt ./...
@@ -175,11 +171,11 @@ modules: ## Update Go dependencies.
175171 # go get github.com/ray-project/kuberay/ray-operator
176172
177173.PHONY : build
178- build : modules defaults generate fmt vet # # Build manager binary.
174+ build : modules defaults fmt vet # # Build manager binary.
179175 go build -o bin/manager main.go
180176
181177.PHONY : run
182- run : modules defaults manifests generate fmt vet # # Run a controller from your host.
178+ run : modules defaults manifests fmt vet # # Run a controller from your host.
183179 go run ./main.go
184180
185181.PHONY : image-build
@@ -367,11 +363,11 @@ catalog-push: ## Push a catalog image.
367363 podman push $(CATALOG_IMG ) $(CATALOG_PUSH_OPT )
368364
369365.PHONY : test-unit
370- test-unit : defaults manifests generate fmt vet envtest # # Run unit tests.
366+ test-unit : defaults manifests fmt vet envtest # # Run unit tests.
371367 KUBEBUILDER_ASSETS=" $( shell $( ENVTEST) use $( ENVTEST_K8S_VERSION) --bin-dir $( LOCALBIN) -p path) " go test $(go list ./... | grep -v /test/ ) -coverprofile cover.out
372368
373369.PHONY : test-e2e
374- test-e2e : defaults manifests generate fmt vet # # Run e2e tests.
370+ test-e2e : defaults manifests fmt vet # # Run e2e tests.
375371 go test -timeout 30m -v ./test/e2e
376372
377373.PHONY : kind-e2e
0 commit comments