We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25e0255 commit 45559bdCopy full SHA for 45559bd
Makefile
@@ -153,8 +153,14 @@ image: clean build #HELP Build image image for linux on host architecture
153
# the e2e and experimental_metrics tags are required to get e2e tests to pass
154
# search the code for go:build e2e or go:build experimental_metrics to see where these tags are used
155
e2e-build: export GO_BUILD_TAGS += e2e experimental_metrics #HELP Build image for e2e testing
156
-e2e-build: IMAGE_TAG = local
157
-e2e-build: image
+e2e-build: local-build
+
158
+.PHONY: local-build
159
+local-build: IMAGE_TAG = local
160
+local-build: image
161
162
+.PHONY: run-local
163
+run-local: local-build kind-create deploy
164
165
.PHONY: clean
166
clean: #HELP Clean up build artifacts
0 commit comments