Add image for prow jobs

This commit is contained in:
Manuel Alejandro de Brito Fontes 2019-05-13 22:29:44 -04:00
parent fafa0a6e13
commit ebc50b5c68
No known key found for this signature in database
GPG key ID: 786136016A8BA02A
2 changed files with 74 additions and 0 deletions

13
test/e2e-prow/Makefile Normal file
View file

@ -0,0 +1,13 @@
TAG ?=v$(shell date +%m%d%Y)-$(shell git rev-parse --short HEAD)
REGISTRY ?= quay.io/kubernetes-ingress-controller
DOCKER ?= docker
IMAGE = $(REGISTRY)/e2e-prow
all: docker-build docker-push
docker-build:
$(DOCKER) build -t $(IMAGE):$(TAG) .
docker-push:
$(DOCKER) push $(IMAGE):$(TAG)