Keep kubernetes sources 10/68110/1
authorCédric Ollivier <cedric.ollivier@orange.com>
Tue, 25 Jun 2019 11:35:34 +0000 (13:35 +0200)
committerCédric Ollivier <cedric.ollivier@orange.com>
Tue, 25 Jun 2019 15:59:49 +0000 (17:59 +0200)
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 <cedric.ollivier@orange.com>
(cherry picked from commit 8af877189e0c276a15717cf7dd9a0fe873214521)

docker/healthcheck/Dockerfile

index 4fad38b..9ed7ae9 100644 (file)
@@ -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"]