diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-04-07 11:03:34 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-04-07 14:06:40 +0200 |
commit | 13ac225eb6afbd4e81109ead35d0594c53ce888b (patch) | |
tree | 0f3e942530591da020cff79dbcb669f9afcae2ea /docker/core/Dockerfile | |
parent | 43bd4baa186d7458791a6bd9d47ea9051d6bccad (diff) |
Split opnfv/functest-kubernetes
4 containers are now proposed
- opnfv/functest-kubernetes-core
- opnfv/functest-kubernetes-healthcheck
- opnfv/functest-kubernetes-smoke
- opnfv/functest-kubernetes-features
Change-Id: I7d6f1edc7e9ace185b2cf991592ebc841f5520b7
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'docker/core/Dockerfile')
-rw-r--r-- | docker/core/Dockerfile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile new file mode 100644 index 00000000..f07f4da3 --- /dev/null +++ b/docker/core/Dockerfile @@ -0,0 +1,18 @@ +FROM alpine:3.7 + +ARG BRANCH=master +ARG OPENSTACK_TAG=stable/pike +ARG OPNFV_TAG=master + +RUN apk --no-cache add --update python py-pip bash git grep && \ + git clone https://gerrit.opnfv.org/gerrit/functest-kubernetes /src/functest-kubernetes && \ + (cd /src/functest-kubernetes && git fetch origin $BRANCH && git checkout FETCH_HEAD) && \ + pip install \ + -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$OPNFV_TAG \ + -chttps://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG \ + /src/functest-kubernetes && \ + rm -rf /src/functest-kubernetes && \ + bash -c "mkdir -p /var/lib/xtesting /home/opnfv" && \ + ln -s /var/lib/xtesting /home/opnfv/functest +COPY logging.ini /usr/lib/python2.7/site-packages/xtesting/ci/logging.ini +CMD ["run_tests", "-t", "all"] |