Skip to content

Commit 45559bd

Browse files
authored
Makefile: re-add run-local target (#3458)
Signed-off-by: Joe Lanford <[email protected]>
1 parent 25e0255 commit 45559bd

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Makefile

+8-2
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,14 @@ image: clean build #HELP Build image image for linux on host architecture
153153
# the e2e and experimental_metrics tags are required to get e2e tests to pass
154154
# search the code for go:build e2e or go:build experimental_metrics to see where these tags are used
155155
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
156+
e2e-build: local-build
157+
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
158164

159165
.PHONY: clean
160166
clean: #HELP Clean up build artifacts

0 commit comments

Comments
 (0)