aboutsummaryrefslogtreecommitdiffstats
path: root/docker/healthcheck
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2019-06-25 13:35:34 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2019-06-25 17:59:49 +0200
commit87aec65b4f94918e27c561ed4efa4d91d6f02889 (patch)
tree35498f2ab9a3e1d255b72508ebc8694b8198ee06 /docker/healthcheck
parent55f3484aa851d9701ff7c9dc491ef7d47972ecf3 (diff)
Keep kubernetes sources
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)
Diffstat (limited to 'docker/healthcheck')
-rw-r--r--docker/healthcheck/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/healthcheck/Dockerfile b/docker/healthcheck/Dockerfile
index 4fad38b8..9ed7ae94 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"]