From a3db31eaf9d0b373cd1928629673e299c46d743d Mon Sep 17 00:00:00 2001 From: Carlo Lobrano Date: Fri, 16 Feb 2024 13:38:01 +0100 Subject: [PATCH] Allow to create a test bundle for development Is currently not possible to create a test bundle (e.g. with changes or custom IMAGE_REGISTRY) due to `docker-build` target running `verify-no-changes` recipe Let `docker-build` run only `test-no-verify-changes` to permit test bundles creation. Signed-off-by: Carlo Lobrano --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6aaaa797..7d102973 100644 --- a/Makefile +++ b/Makefile @@ -188,7 +188,7 @@ run: manifests generate fmt vet ## Run a controller from your host. go run ./main.go .PHONY: docker-build -docker-build: test ## Build docker image with the manager. +docker-build: test-no-verify-changes ## Build docker image with the manager. docker build -t ${IMG} . .PHONY: docker-push