Update jenkins jobs for networking-ovn
networking-ovn has been running a simple devstack job for a while that installs OVN and brings up Neutron using OVN as a backend. It at least ensures things don't blow up on startup or when the default networks are created by devstack. Rename this job (s/tempest/install/) and make it voting. Create a new non-voting job that actually runs tempest so we can start working through whatever blows up there. Change-Id: I6481e47a88311c9124e3286a848b9bcaddf1371b
This commit is contained in:
parent
7a30db06c1
commit
b4142044f5
@ -1,5 +1,5 @@
|
||||
- job-template:
|
||||
name: '{pipeline}-tempest-dsvm-networking-ovn{branch-designator}'
|
||||
name: '{pipeline}-install-dsvm-networking-ovn{branch-designator}'
|
||||
node: '{node}'
|
||||
|
||||
wrappers:
|
||||
@ -16,9 +16,8 @@
|
||||
export PYTHONUNBUFFERED=true
|
||||
export DEVSTACK_GATE_TIMEOUT=120
|
||||
export DEVSTACK_GATE_NEUTRON=1
|
||||
# For now, simply enable bringing stack.sh up with OVN, we can't
|
||||
# test anything until OVN is more functional, but this job will
|
||||
# ensure OVN at least comes up with devstack
|
||||
# For now, simply enable bringing stack.sh up with OVN.
|
||||
# Another job that isn't voting yet runs tempest.
|
||||
export DEVSTACK_GATE_TEMPEST=0
|
||||
# Enable only a very minimal set of services for OVN
|
||||
export OVERRIDE_ENABLED_SERVICES=ovn,q-svc,q-dhcp,q-l3,key,mysql,rabbit
|
||||
@ -44,3 +43,47 @@
|
||||
publishers:
|
||||
- devstack-logs
|
||||
- console-log
|
||||
|
||||
|
||||
- job-template:
|
||||
name: '{pipeline}-tempest-dsvm-networking-ovn{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 OVERRIDE_ENABLED_SERVICES=key,n-api,n-cpu,n-cond,n-sch,n-novnc,n-crt,n-cauth,g-api,g-reg,c-sch,c-api,c-vol,horizon,rabbit,tempest,mysql,dstat,ovn,q-svc,q-dhcp,q-l3
|
||||
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="stackforge/networking-ovn $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-ovn git://git.openstack.org/stackforge/networking-ovn"
|
||||
|
||||
# Keep localrc to be able to set some vars in pre_test_hook
|
||||
export KEEP_LOCALRC=1
|
||||
|
||||
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
|
||||
|
@ -4352,6 +4352,16 @@
|
||||
node: 'devstack-precise || devstack-trusty'
|
||||
branch-designator: ''
|
||||
branch-override: default
|
||||
- '{pipeline}-install-dsvm-networking-ovn{branch-designator}':
|
||||
pipeline: check
|
||||
node: 'devstack-precise || devstack-trusty'
|
||||
branch-designator: ''
|
||||
branch-override: default
|
||||
- '{pipeline}-install-dsvm-networking-ovn{branch-designator}':
|
||||
pipeline: gate
|
||||
node: 'devstack-precise || devstack-trusty'
|
||||
branch-designator: ''
|
||||
branch-override: default
|
||||
|
||||
- project:
|
||||
name: networking-ovs-dpdk
|
||||
|
@ -5931,7 +5931,10 @@ projects:
|
||||
- name: publish-to-pypi
|
||||
- name: docs-on-rtfd
|
||||
check:
|
||||
- check-install-dsvm-networking-ovn
|
||||
- check-tempest-dsvm-networking-ovn
|
||||
gate:
|
||||
- gate-install-dsvm-networking-ovn
|
||||
|
||||
- name: stackforge/networking-ovs-dpdk
|
||||
template:
|
||||
|
Loading…
x
Reference in New Issue
Block a user