Update e2e images (#4110)

This commit is contained in:
Manuel Alejandro de Brito Fontes 2019-05-24 02:47:14 +02:00 committed by GitHub
parent ee1f36d8df
commit f63f0457be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 27 additions and 20 deletions

View file

@ -21,7 +21,13 @@ IMAGE = $(REGISTRY)/e2e
all: docker-build docker-push
docker-build:
$(DOCKER) build -t $(IMAGE):$(TAG) .
$(DOCKER) build \
--pull \
--build-arg K8S_RELEASE=v1.14.1 \
--build-arg ETCD_VERSION=v3.3.12 \
-t $(IMAGE):$(TAG) .
docker-push:
$(DOCKER) push $(IMAGE):$(TAG)
$(DOCKER) tag $(IMAGE):$(TAG) $(IMAGE):latest
$(DOCKER) push $(IMAGE):latest