ingress-nginx-helm/images/e2e-prow/Makefile
Manuel Alejandro de Brito Fontes 5f03b07245 Update e2e image
2020-05-31 15:38:02 -04:00

16 lines
399 B
Makefile

TAG ?=v$(shell date +%m%d%Y)-$(shell git rev-parse --short HEAD)
REGISTRY ?= quay.io/kubernetes-ingress-controller
IMAGE = $(REGISTRY)/e2e-prow
.PHONY: image
image:
docker buildx build \
--pull \
--push \
--platform amd64 \
--build-arg K8S_RELEASE=v1.17.0 \
--build-arg ETCD_VERSION=v3.3.18 \
--build-arg KIND_VERSION=v0.8.0 \
--build-arg GO_VERSION=1.14.2 \
-t $(IMAGE):$(TAG) .