From 0cd2236217445e77fbe2b0a7355e10829e3b7da7 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Fri, 3 Jul 2020 15:35:31 +0200 Subject: Prepare full patrole testing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- docker/smoke/Dockerfile | 11 +++++++++-- 1 file 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 -- cgit 1.2.3-korg