@@ -125,27 +125,6 @@ help: ## Display this help.
125
125
126
126
# #@ Development
127
127
128
- DEFAULTS_TEST_FILE := test/support/defaults.go
129
-
130
- .PHONY : defaults
131
- defaults :
132
- $(info Regenerating $(DEFAULTS_TEST_FILE ) )
133
- @echo " package support" > $(DEFAULTS_TEST_FILE )
134
- @echo " " >> $(DEFAULTS_TEST_FILE )
135
- @echo " // ***********************" >> $(DEFAULTS_TEST_FILE )
136
- @echo " // DO NOT EDIT THIS FILE" >> $(DEFAULTS_TEST_FILE )
137
- @echo " // ***********************" >> $(DEFAULTS_TEST_FILE )
138
- @echo " " >> $(DEFAULTS_TEST_FILE )
139
- @echo " const (" >> $(DEFAULTS_TEST_FILE )
140
- @echo " CodeFlareSDKVersion = \" $( CODEFLARE_SDK_VERSION) \" " >> $(DEFAULTS_TEST_FILE )
141
- @echo " RayVersion = \" $( RAY_VERSION) \" " >> $(DEFAULTS_TEST_FILE )
142
- @echo " RayImage = \" $( RAY_IMAGE) \" " >> $(DEFAULTS_TEST_FILE )
143
- @echo " " >> $(DEFAULTS_TEST_FILE )
144
- @echo " )" >> $(DEFAULTS_TEST_FILE )
145
- @echo " " >> $(DEFAULTS_TEST_FILE )
146
-
147
- gofmt -w $(DEFAULTS_TEST_FILE)
148
-
149
128
# this encounters sed issues on MacOS, quick fix is to use gsed or to escape the parentheses i.e. \( \)
150
129
.PHONY : manifests
151
130
manifests : controller-gen kustomize install-yq # # Generate RBAC objects.
@@ -173,11 +152,11 @@ modules: ## Update Go dependencies.
173
152
go mod tidy
174
153
175
154
.PHONY : build
176
- build : modules defaults fmt vet # # Build manager binary.
155
+ build : modules fmt vet # # Build manager binary.
177
156
go build -o bin/manager main.go
178
157
179
158
.PHONY : run
180
- run : modules defaults manifests fmt vet # # Run a controller from your host.
159
+ run : modules manifests fmt vet # # Run a controller from your host.
181
160
go run ./main.go
182
161
183
162
.PHONY : image-build
@@ -290,7 +269,7 @@ validate-bundle: install-operator-sdk
290
269
$(OPERATOR_SDK ) bundle validate ./bundle --select-optional suite=operatorframework
291
270
292
271
.PHONY : bundle
293
- bundle : defaults manifests kustomize install-operator-sdk # # Generate bundle manifests and metadata, then validate generated files.
272
+ bundle : manifests kustomize install-operator-sdk # # Generate bundle manifests and metadata, then validate generated files.
294
273
$(OPERATOR_SDK ) generate kustomize manifests -q
295
274
cd config/manager && $(KUSTOMIZE ) edit set image controller=$(IMG )
296
275
cd config/manifests && $(KUSTOMIZE ) edit add patch --patch ' [{"op":"add", "path":"/metadata/annotations/containerImage", "value": "$(IMG)" }]' --kind ClusterServiceVersion
@@ -369,11 +348,11 @@ catalog-push: ## Push a catalog image.
369
348
podman push $(CATALOG_IMG ) $(CATALOG_PUSH_OPT )
370
349
371
350
.PHONY : test-unit
372
- test-unit : defaults manifests fmt vet envtest # # Run unit tests.
351
+ test-unit : manifests fmt vet envtest # # Run unit tests.
373
352
KUBEBUILDER_ASSETS=" $( shell $( ENVTEST) use $( ENVTEST_K8S_VERSION) --bin-dir $( LOCALBIN) -p path) " go test $(go list ./... | grep -v /test/ ) -coverprofile cover.out
374
353
375
354
.PHONY : test-e2e
376
- test-e2e : defaults manifests fmt vet # # Run e2e tests.
355
+ test-e2e : manifests fmt vet # # Run e2e tests.
377
356
go test -timeout 30m -v ./test/e2e
378
357
379
358
.PHONY : kind-e2e
0 commit comments