From 7e65b90c4b76ab54aa30a3b19c5730a83c352ef3 Mon Sep 17 00:00:00 2001 From: Manuel Alejandro de Brito Fontes Date: Mon, 24 Feb 2020 09:43:27 -0300 Subject: [PATCH] Fix push task (#5158) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 19d756590..7b3b129d3 100644 --- a/Makefile +++ b/Makefile @@ -120,7 +120,7 @@ push: .push-$(ARCH) ## Publish image for a particular arch. # internal task .PHONY: .push-$(ARCH) .push-$(ARCH): - docker push $(BASE_IMAGE)-$(ARCH):$(TAG) + docker push $(REGISTRY)/nginx-ingress-controller-${ARCH}:$(TAG) .PHONY: build build: check-go-version ## Build ingress controller, debug tool and pre-stop hook.