blob: a9ce3e0099308b912826788b1024934c4c1fb91a [file] [log] [blame]
Jens Harbott32ff03c2017-12-18 19:37:29 +00001- hosts: primary
Chandan Kumara564cf32017-11-16 16:09:38 +05302 name: neutron-tempest-plugin-dvr-multinode-scenario
3 tasks:
4
5 - name: Ensure legacy workspace directory
6 file:
7 path: '{{ ansible_user_dir }}/workspace'
8 state: directory
9
10 - shell:
11 cmd: |
12 set -e
13 set -x
14 cat > clonemap.yaml << EOF
15 clonemap:
16 - name: openstack-infra/devstack-gate
17 dest: devstack-gate
18 EOF
19 /usr/zuul-env/bin/zuul-cloner -m clonemap.yaml --cache-dir /opt/git \
20 git://git.openstack.org \
21 openstack-infra/devstack-gate
22 executable: /bin/bash
23 chdir: '{{ ansible_user_dir }}/workspace'
24 environment: '{{ zuul | zuul_legacy_vars }}'
25
26 - shell:
27 cmd: |
28 set -e
29 set -x
Chandan Kumara564cf32017-11-16 16:09:38 +053030 export PYTHONUNBUFFERED=true
31 export DEVSTACK_GATE_TEMPEST=1
Jens Harbott228d5b82017-12-06 12:03:09 +000032 export DEVSTACK_GATE_TEMPEST_ALL_PLUGINS=1
Chandan Kumara564cf32017-11-16 16:09:38 +053033 export DEVSTACK_GATE_NEUTRON=1
34 export DEVSTACK_GATE_CONFIGDRIVE=0
35 export DEVSTACK_GATE_TEMPEST_REGEX="(neutron_tempest_plugin.scenario)"
Jens Harbott228d5b82017-12-06 12:03:09 +000036 export DEVSTACK_LOCAL_CONFIG="enable_plugin neutron-tempest-plugin git://git.openstack.org/openstack/neutron-tempest-plugin"
Chandan Kumara564cf32017-11-16 16:09:38 +053037 # Test DVR works multinode
38 export DEVSTACK_GATE_NEUTRON_DVR=1
39 export BRANCH_OVERRIDE=default
40 if [ "$BRANCH_OVERRIDE" != "default" ] ; then
41 export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
42 fi
43 export DEVSTACK_GATE_TOPOLOGY="multinode"
44 export PROJECTS="openstack/neutron-tempest-plugin $PROJECTS"
45
46 function gate_hook {
47 bash -xe $BASE/new/neutron/neutron/tests/contrib/gate_hook.sh dsvm-scenario-ovs
48 }
49 export -f gate_hook
50
51 function post_test_hook {
52 bash -xe $BASE/new/neutron/neutron/tests/contrib/post_test_hook.sh dsvm-scenario-ovs
53 }
54 export -f post_test_hook
55
56 cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
57 ./safe-devstack-vm-gate-wrap.sh
58 executable: /bin/bash
59 chdir: '{{ ansible_user_dir }}/workspace'
60 environment: '{{ zuul | zuul_legacy_vars }}'