Remove networking-midonet tempest-dsvm jobs
These jobs clone and build a repository from github within a devstack plugin. In order to do so, they must disable ERROR_ON_CLONE which is our assurance that all tested OpenStack projects are in the $PROJECTS variable. Further, OpenStack projects must not clone non-OpenStack repositories in gate tests -- they should either be consuming OpenStack projects from git via the $PROJECTS variable or installing released packages as dependencies. For Midonet, that likely either means via the operating system, or via a maven repository. If via maven, then we will need some commitment from the Midonet team to set up a maven mirror similar to our pypi mirror so that when we run tests we are not relying on external network resources. Change-Id: I9194069c4754439977a11404bbc5ac650c5134df
This commit is contained in:
parent
09cce5376e
commit
5b5d5ea08b
@ -1,150 +0,0 @@
|
|||||||
- job-template:
|
|
||||||
name: '{pipeline}-tempest-dsvm-networking-midonet{branch-designator}'
|
|
||||||
node: '{node}'
|
|
||||||
|
|
||||||
wrappers:
|
|
||||||
- build-timeout:
|
|
||||||
timeout: 125
|
|
||||||
- timestamps
|
|
||||||
|
|
||||||
builders:
|
|
||||||
- link-logs
|
|
||||||
- net-info
|
|
||||||
- devstack-checkout
|
|
||||||
- shell: |
|
|
||||||
#!/bin/bash -xe
|
|
||||||
export PYTHONUNBUFFERED=true
|
|
||||||
export DEVSTACK_GATE_TIMEOUT=120
|
|
||||||
export DEVSTACK_GATE_NEUTRON=1
|
|
||||||
export DEVSTACK_GATE_TEMPEST=1
|
|
||||||
export BRANCH_OVERRIDE={branch-override}
|
|
||||||
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
|
|
||||||
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
|
|
||||||
fi
|
|
||||||
# Because we are testing a non standard project, add
|
|
||||||
# our project repository. This makes zuul do the right
|
|
||||||
# reference magic for testing changes.
|
|
||||||
export PROJECTS="openstack/networking-midonet $PROJECTS"
|
|
||||||
# Note the actual url here is somewhat irrelevant because it
|
|
||||||
# caches in nodepool, however make it a valid url for
|
|
||||||
# documentation purposes.
|
|
||||||
export DEVSTACK_LOCAL_CONFIG="enable_plugin networking-midonet git://git.openstack.org/openstack/networking-midonet"
|
|
||||||
export DEVSTACK_LOCAL_CONFIG+=$'\n'"Q_PLUGIN=midonet"
|
|
||||||
export DEVSTACK_LOCAL_CONFIG+=$'\n'"TEMPEST_RUN_VALIDATION=True"
|
|
||||||
|
|
||||||
# Keep localrc to be able to set some vars in pre_test_hook
|
|
||||||
export KEEP_LOCALRC=1
|
|
||||||
|
|
||||||
export DEVSTACK_GATE_SETTINGS=/opt/stack/new/networking-midonet/devstack/devstackgaterc
|
|
||||||
|
|
||||||
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
||||||
./safe-devstack-vm-gate-wrap.sh
|
|
||||||
|
|
||||||
publishers:
|
|
||||||
- devstack-logs
|
|
||||||
- console-log
|
|
||||||
|
|
||||||
- job-template:
|
|
||||||
name: '{pipeline}-tempest-dsvm-networking-midonet-v2{branch-designator}'
|
|
||||||
node: '{node}'
|
|
||||||
|
|
||||||
wrappers:
|
|
||||||
- build-timeout:
|
|
||||||
timeout: 125
|
|
||||||
- timestamps
|
|
||||||
|
|
||||||
builders:
|
|
||||||
- link-logs
|
|
||||||
- net-info
|
|
||||||
- devstack-checkout
|
|
||||||
- shell: |
|
|
||||||
#!/bin/bash -xe
|
|
||||||
export PYTHONUNBUFFERED=true
|
|
||||||
export DEVSTACK_GATE_TIMEOUT=120
|
|
||||||
export DEVSTACK_GATE_NEUTRON=1
|
|
||||||
export DEVSTACK_GATE_TEMPEST=1
|
|
||||||
export BRANCH_OVERRIDE={branch-override}
|
|
||||||
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
|
|
||||||
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Because we are testing a non standard project, add
|
|
||||||
# our project repository. This makes zuul do the right
|
|
||||||
# reference magic for testing changes.
|
|
||||||
export PROJECTS="openstack/networking-midonet $PROJECTS"
|
|
||||||
# Note the actual url here is somewhat irrelevant because it
|
|
||||||
# caches in nodepool, however make it a valid url for
|
|
||||||
# documentation purposes.
|
|
||||||
export DEVSTACK_LOCAL_CONFIG="enable_plugin networking-midonet git://git.openstack.org/openstack/networking-midonet"
|
|
||||||
export DEVSTACK_LOCAL_CONFIG+=$'\n'"Q_PLUGIN=midonet"
|
|
||||||
export DEVSTACK_LOCAL_CONFIG+=$'\n'"TEMPEST_RUN_VALIDATION=True"
|
|
||||||
|
|
||||||
# Enable MidoNet v2 architecture
|
|
||||||
export DEVSTACK_LOCAL_CONFIG+=$'\n'"MIDONET_PLUGIN=midonet.neutron.plugin_v2.MidonetPluginV2"
|
|
||||||
export DEVSTACK_LOCAL_CONFIG+=$'\n'"MIDONET_CLIENT=midonet.neutron.client.cluster.MidonetClusterClient"
|
|
||||||
export DEVSTACK_LOCAL_CONFIG+=$'\n'"MIDONET_USE_ZOOM=True"
|
|
||||||
|
|
||||||
# Keep localrc to be able to set some vars in pre_test_hook
|
|
||||||
export KEEP_LOCALRC=1
|
|
||||||
|
|
||||||
export DEVSTACK_GATE_SETTINGS=/opt/stack/new/networking-midonet/devstack/devstackgaterc
|
|
||||||
|
|
||||||
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
||||||
./safe-devstack-vm-gate-wrap.sh
|
|
||||||
|
|
||||||
publishers:
|
|
||||||
- devstack-logs
|
|
||||||
- console-log
|
|
||||||
|
|
||||||
- job-template:
|
|
||||||
name: '{pipeline}-tempest-dsvm-networking-midonet-ml2{branch-designator}'
|
|
||||||
node: '{node}'
|
|
||||||
|
|
||||||
wrappers:
|
|
||||||
- build-timeout:
|
|
||||||
timeout: 125
|
|
||||||
- timestamps
|
|
||||||
|
|
||||||
builders:
|
|
||||||
- link-logs
|
|
||||||
- net-info
|
|
||||||
- devstack-checkout
|
|
||||||
- shell: |
|
|
||||||
#!/bin/bash -xe
|
|
||||||
export PYTHONUNBUFFERED=true
|
|
||||||
export DEVSTACK_GATE_TIMEOUT=120
|
|
||||||
export DEVSTACK_GATE_NEUTRON=1
|
|
||||||
export DEVSTACK_GATE_TEMPEST=1
|
|
||||||
export BRANCH_OVERRIDE={branch-override}
|
|
||||||
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
|
|
||||||
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Because we are testing a non standard project, add
|
|
||||||
# our project repository. This makes zuul do the right
|
|
||||||
# reference magic for testing changes.
|
|
||||||
export PROJECTS="openstack/networking-midonet $PROJECTS"
|
|
||||||
# Note the actual url here is somewhat irrelevant because it
|
|
||||||
# caches in nodepool, however make it a valid url for
|
|
||||||
# documentation purposes.
|
|
||||||
export DEVSTACK_LOCAL_CONFIG="enable_plugin networking-midonet git://git.openstack.org/openstack/networking-midonet"
|
|
||||||
export DEVSTACK_LOCAL_CONFIG+=$'\n'"Q_PLUGIN=ml2"
|
|
||||||
export DEVSTACK_LOCAL_CONFIG+=$'\n'"Q_ML2_PLUGIN_MECHANISM_DRIVERS=midonet"
|
|
||||||
export DEVSTACK_LOCAL_CONFIG+=$'\n'"Q_ML2_PLUGIN_TYPE_DRIVERS=midonet"
|
|
||||||
export DEVSTACK_LOCAL_CONFIG+=$'\n'"Q_ML2_TENANT_NETWORK_TYPE=midonet"
|
|
||||||
export DEVSTACK_LOCAL_CONFIG+=$'\n'"ML2_L3_PLUGIN=midonet.neutron.services.l3.l3_midonet.MidonetL3ServicePlugin"
|
|
||||||
export DEVSTACK_LOCAL_CONFIG+=$'\n'"TEMPEST_RUN_VALIDATION=True"
|
|
||||||
export DEVSTACK_LOCAL_CONFIG+=$'\n'"METADATA_SERVICE_AVAILABLE=True"
|
|
||||||
export DEVSTACK_LOCAL_CONFIG+=$'\n'"MIDONET_USE_ZOOM=True"
|
|
||||||
|
|
||||||
# Keep localrc to be able to set some vars in pre_test_hook
|
|
||||||
export KEEP_LOCALRC=1
|
|
||||||
|
|
||||||
export DEVSTACK_GATE_SETTINGS=/opt/stack/new/networking-midonet/devstack/devstackgaterc
|
|
||||||
|
|
||||||
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
||||||
./safe-devstack-vm-gate-wrap.sh
|
|
||||||
|
|
||||||
publishers:
|
|
||||||
- devstack-logs
|
|
||||||
- console-log
|
|
@ -859,21 +859,6 @@
|
|||||||
- python-jobs
|
- python-jobs
|
||||||
- pypi-jobs
|
- pypi-jobs
|
||||||
- openstack-publish-jobs
|
- openstack-publish-jobs
|
||||||
- '{pipeline}-tempest-dsvm-networking-midonet{branch-designator}':
|
|
||||||
pipeline: gate
|
|
||||||
node: 'devstack-precise || devstack-trusty'
|
|
||||||
branch-designator: ''
|
|
||||||
branch-override: default
|
|
||||||
- '{pipeline}-tempest-dsvm-networking-midonet-v2{branch-designator}':
|
|
||||||
pipeline: gate
|
|
||||||
node: 'devstack-precise || devstack-trusty'
|
|
||||||
branch-designator: ''
|
|
||||||
branch-override: default
|
|
||||||
- '{pipeline}-tempest-dsvm-networking-midonet-ml2{branch-designator}':
|
|
||||||
pipeline: gate
|
|
||||||
node: 'devstack-precise || devstack-trusty'
|
|
||||||
branch-designator: ''
|
|
||||||
branch-override: default
|
|
||||||
|
|
||||||
- project:
|
- project:
|
||||||
name: networking-odl
|
name: networking-odl
|
||||||
|
@ -671,11 +671,6 @@ jobs:
|
|||||||
all-files-match-any:
|
all-files-match-any:
|
||||||
- ^.*\.rst$
|
- ^.*\.rst$
|
||||||
- ^doc/.*$
|
- ^doc/.*$
|
||||||
- project: ^openstack/networking-midonet$
|
|
||||||
all-files-match-any:
|
|
||||||
- ^.*\.rst$
|
|
||||||
- ^doc/.*$
|
|
||||||
- ^midonet/neutron/tests/.*$
|
|
||||||
|
|
||||||
# Skip non-doc jobs for doc-only neutron changes. Since
|
# Skip non-doc jobs for doc-only neutron changes. Since
|
||||||
# doc/source/conf.py is checked by neutron-(pep8|pylint), those jobs
|
# doc/source/conf.py is checked by neutron-(pep8|pylint), those jobs
|
||||||
@ -880,17 +875,6 @@ jobs:
|
|||||||
- name: gate-networking-midonet-python34
|
- name: gate-networking-midonet-python34
|
||||||
branch: ^(?!stable/(icehouse|juno|kilo)).*$
|
branch: ^(?!stable/(icehouse|juno|kilo)).*$
|
||||||
|
|
||||||
- name: ^gate-tempest-dsvm-networking-midonet
|
|
||||||
branch: ^(?!stable/(icehouse|juno)).*$
|
|
||||||
|
|
||||||
- name: ^gate-tempest-dsvm-networking-midonet-v2
|
|
||||||
branch: ^(?!stable/(icehouse|juno)).*$
|
|
||||||
voting: false
|
|
||||||
|
|
||||||
- name: ^gate-tempest-dsvm-networking-midonet-ml2
|
|
||||||
branch: ^(?!stable/(icehouse|juno|kilo)).*$
|
|
||||||
voting: false
|
|
||||||
|
|
||||||
- name: ^gate-tempest-dsvm-networking-odl
|
- name: ^gate-tempest-dsvm-networking-odl
|
||||||
branch: ^(?!stable)
|
branch: ^(?!stable)
|
||||||
voting: false
|
voting: false
|
||||||
@ -2639,13 +2623,6 @@ projects:
|
|||||||
- name: python3-jobs
|
- name: python3-jobs
|
||||||
- name: publish-to-pypi
|
- name: publish-to-pypi
|
||||||
- name: openstack-server-publish-jobs
|
- name: openstack-server-publish-jobs
|
||||||
check:
|
|
||||||
- gate-tempest-dsvm-networking-midonet
|
|
||||||
gate:
|
|
||||||
- gate-tempest-dsvm-networking-midonet
|
|
||||||
experimental:
|
|
||||||
- gate-tempest-dsvm-networking-midonet-v2
|
|
||||||
- gate-tempest-dsvm-networking-midonet-ml2
|
|
||||||
|
|
||||||
- name: openstack/networking-odl
|
- name: openstack/networking-odl
|
||||||
template:
|
template:
|
||||||
|
Loading…
Reference in New Issue
Block a user