From c6f576de85d0697eb5e74ba32a9d2ce83cc63f7c Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Tue, 25 Jun 2019 13:35:34 +0200 Subject: Keep kubernetes sources MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It now only removes .git and _output Else they are missing files when dumping the logs in case of failures [1]. [1] https://build.opnfv.org/ci/job/functest-kubernetes-opnfv-functest-kubernetes-smoke-iruya-k8s_conformance-run/107/console Change-Id: Ia8b45b8af48bc0005e75a174258e27f1f3edcaac Signed-off-by: Cédric Ollivier (cherry picked from commit 8af877189e0c276a15717cf7dd9a0fe873214521) --- docker/healthcheck/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docker') diff --git a/docker/healthcheck/Dockerfile b/docker/healthcheck/Dockerfile index be05fd5f..2e8ab9e6 100644 --- a/docker/healthcheck/Dockerfile +++ b/docker/healthcheck/Dockerfile @@ -14,7 +14,7 @@ RUN apk --no-cache add --update make py-pip bash git \ make kubectl ginkgo && \ make WHAT=test/e2e/e2e.test && \ mv _output/bin/* /usr/local/bin) && \ - rm -r /src/k8s.io && \ + rm -r /src/k8s.io/kubernetes/.git /src/k8s.io/kubernetes/_output && \ apk del .build-deps COPY testcases.yaml /usr/lib/python2.7/site-packages/xtesting/ci/testcases.yaml CMD ["run_tests", "-t", "all"] -- cgit 1.2.3-korg