diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-06-30 15:03:00 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-07-11 10:09:02 +0200 |
commit | 413b52a98a359094dbc251749c04d2789e0ab24c (patch) | |
tree | 21542dee9560bb8fc48298127be749d61a6c9549 /docker/core | |
parent | dda31839aa186a9d86c7e9c5c8049e8c3357c073 (diff) |
Add a new testcase leveraging on xrally/kubernetes
It partially runs the all-in-one task for checking basic functionality
of Kubernetes cluster.
Change-Id: Iaf7a29d2c1a364073e4caaeef69d68ee79ea56bc
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'docker/core')
-rw-r--r-- | docker/core/Dockerfile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile index 88a6ea7f..73ad2660 100644 --- a/docker/core/Dockerfile +++ b/docker/core/Dockerfile @@ -4,9 +4,9 @@ ARG BRANCH=master ARG OPENSTACK_TAG=master ARG OPNFV_TAG=master -RUN apk --no-cache add --update python3 bash git grep && \ +RUN apk --no-cache add --update python3 bash git grep libffi openssl && \ apk --no-cache add --virtual .build-deps --update \ - python3-dev build-base && \ + python3-dev build-base libffi-dev openssl-dev && \ git init /src/functest-kubernetes && \ (cd /src/functest-kubernetes && \ git fetch --tags https://gerrit.opnfv.org/gerrit/functest-kubernetes $BRANCH && \ @@ -18,6 +18,9 @@ RUN apk --no-cache add --update python3 bash git grep && \ rm -rf /src/functest-kubernetes && \ bash -c "mkdir -p /var/lib/xtesting /home/opnfv" && \ ln -s /var/lib/xtesting /home/opnfv/functest && \ + mkdir -p /etc/rally && \ + printf "[database]\nconnection = 'sqlite:////var/lib/rally/database/rally.sqlite'" > /etc/rally/rally.conf && \ + mkdir -p /var/lib/rally/database && rally db create && \ apk del .build-deps COPY logging.ini /usr/lib/python3.6/site-packages/xtesting/ci/logging.ini CMD ["run_tests", "-t", "all"] |