aboutsummaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2020-07-03 15:35:31 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2020-07-03 15:35:31 +0200
commit0cd2236217445e77fbe2b0a7355e10829e3b7da7 (patch)
tree1824e79833542a768ac1c707d0967ce75be74a63 /docker
parent3d92b386075690e34b398647499472f1adb407b5 (diff)
Prepare full patrole testing
It adds the remaining services which didn't work before. It may be needed for CNTT (see security discussion in vevent). Change-Id: I36b3ad8bbfc8ffdcc427c3d97b92c78da27915c0 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'docker')
-rw-r--r--docker/smoke/Dockerfile11
1 files changed, 9 insertions, 2 deletions
diff --git a/docker/smoke/Dockerfile b/docker/smoke/Dockerfile
index d49fbb9a1..79ed32510 100644
--- a/docker/smoke/Dockerfile
+++ b/docker/smoke/Dockerfile
@@ -6,6 +6,9 @@ ARG CINDER_TEMPEST_TAG=master
ARG KEYSTONE_TEMPEST_TAG=master
ARG NEUTRON_TAG=master
ARG GLANCE_TAG=master
+ARG NOVA_TAG=master
+ARG KEYSTONE_TAG=master
+ARG CINDER_TAG=master
ARG BARBICAN_TAG=master
ARG OCTAVIA_TAG=master
ARG HEAT_TEMPEST_TAG=master
@@ -69,14 +72,18 @@ RUN apk --no-cache add --update libxml2 libxslt && \
pip3 install --no-cache-dir --src /src -c/src/requirements/upper-constraints.txt \
-c/src/functest/upper-constraints.txt \
oslo.policy -e git+https://opendev.org/openstack/neutron.git@$NEUTRON_TAG#egg=neutron \
- -e git+https://opendev.org/openstack/glance.git@$GLANCE_TAG#egg=glance && \
+ -e git+https://opendev.org/openstack/glance.git@$GLANCE_TAG#egg=glance \
+ -e git+https://opendev.org/openstack/nova.git@$NOVA_TAG#egg=nova \
+ -e git+https://opendev.org/openstack/keystone.git@$KEYSTONE_TAG#egg=keystone \
+ -e git+https://opendev.org/openstack/cinder.git@$CINDER_TAG#egg=cinder && \
oslopolicy-sample-generator --format json --output-file /etc/neutron/policy.json --namespace neutron && \
oslopolicy-sample-generator --format json --output-file /etc/glance/policy.json --namespace glance && \
deactivate && \
rm -r oslo /src/patrole /src/barbican-tempest-plugin /src/neutron-tempest-plugin \
/src/cinder-tempest-plugin /src/keystone-tempest-plugin \
/src/octavia-tempest-plugin /src/heat-tempest-plugin \
- /src/telemetry-tempest-plugin /src/neutron /src/glance && \
+ /src/telemetry-tempest-plugin /src/neutron /src/glance /src/nova \
+ /src/keystone /src/cinder && \
apk del .build-deps
COPY compute.txt /home/opnfv/functest/data/refstack/compute.txt
COPY object.txt /home/opnfv/functest/data/refstack/object.txt