ingress-nginx-helm/test/e2e-image/Makefile

22 lines
468 B
Makefile
Raw Normal View History

2020-01-04 20:29:49 -03:00
DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
2020-05-31 12:53:57 -04:00
image:
make -C $(DIR)/../../ e2e-test-binary
cp $(DIR)/../e2e/e2e.test .
cp $(DIR)/../e2e/wait-for-nginx.sh .
cp -R $(DIR)/../../charts .
# TODO: avoid manual copy
cp -R $(DIR)/../../test/e2e/settings/ocsp/* .
2020-06-01 21:22:32 -04:00
docker build \
2020-01-26 21:48:35 -03:00
--tag nginx-ingress-controller:e2e .
clean:
rm -rf _cache e2e.test kubectl cluster ginkgo
docker rmi -f nginx-ingress-controller:e2e || true
.PHONY: image clean