aboutsummaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2019-06-27 11:31:48 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2019-06-27 19:40:11 +0200
commit98360fecc391ba53956171eb5b739413937d80b9 (patch)
tree4230e16271a7b601cf39cc50a8d164cfed41cad5 /docker
parent050ec2d6c7de93272336588e2d2dc6327807a8c9 (diff)
Disable log dump
It avoids dumping logs at the end which requires gcloud configured (CI). Then it partially reverts "Keep kubernetes sources" [1]. It now dumps e2e.test output in e2e.log as sonobuoy [2]. [1] https://gerrit.opnfv.org/gerrit/68106 [2] https://raw.githubusercontent.com/cncf/k8s-conformance/master/v1.15/kubeadm/e2e.log Change-Id: I400e1cf92a8540eba3d40db1ed4237628921efe6 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com> (cherry picked from commit d1d3feacdbf061cf4115ceeadcb71d2142971757)
Diffstat (limited to 'docker')
-rw-r--r--docker/healthcheck/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/healthcheck/Dockerfile b/docker/healthcheck/Dockerfile
index 82c297a5..304412a3 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/kubernetes/.git /src/k8s.io/kubernetes/_output && \
+ rm -r /src/k8s.io && \
apk del .build-deps
COPY testcases.yaml /usr/lib/python2.7/site-packages/xtesting/ci/testcases.yaml
CMD ["run_tests", "-t", "all"]