From 6c38cce01ec9805a3f0166779b1153cc175dffab 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.