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

22 lines
468 B
Makefile
Raw Normal View History

2020-01-04 23:29:49 +00:00
DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
2020-05-31 16:53:57 +00: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-02 01:22:32 +00:00
docker build \
2020-01-27 00:48:35 +00: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