diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-06-27 11:31:48 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-06-27 19:40:32 +0200 |
commit | 90b7a6d3c33057dcf50951e81c86f3c7bb426d9d (patch) | |
tree | ba39865436886f73809b3fa68e64987762065623 /docker | |
parent | 0823cd9cbfce16ad20faafc70e5690b9bd9bfb0d (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/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/healthcheck/Dockerfile b/docker/healthcheck/Dockerfile index 9ed7ae94..4fad38b8 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"] |