From de24f25e5846ba442ed723613289eee550fdbd78 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Mon, 12 Feb 2018 11:28:54 +1100 Subject: [PATCH] Add native distro test jobs This implements legacy-dsvm-nodepool-[distro]-src jobs as native jobs. This seems like the best home for them, as they are run by multiple externals such as glean and diskimage-builder. Previously the defaults were set such that with no arguments, the trusty test ran for nodepool-functional-py35. To facilitate better templating, this turns all builds off by default. The nodepool functional test is moved to a base template, and then nodepool-functional-py35 explicitly builds and boots Xenial now (trusty doesn't seem very useful). The check_devstack_plugin.sh script runs after devstack, so needs to source the stackrc file to pull in the variables about what images are paused or not. Additionally, the path for the script is fixed to nodepool so we can run the job from other projects. The redhat, ubuntu and suse legacy tests are re-implemented for their respective builds. This also highlighted that the opensuse test wasn't actually doing anything. This actually adds the configuration to build opensuse-423. Needed-By: https://review.openstack.org/543270 Needed-By: https://review.openstack.org/543328 Needed-By: https://review.openstack.org/543329 Needed-By: https://review.openstack.org/543330 Change-Id: I203d149a1d63ac8358e1c8b878d9c2bc0ba67c02 --- .zuul.yaml | 41 ++++++++++++++- devstack/files/debs/nodepool | 2 + devstack/files/rpms/nodepool | 2 + devstack/plugin.sh | 34 +++++++++++++ devstack/settings | 3 +- .../nodepool-functional-py35-src/run.yaml | 2 +- tools/check_devstack_plugin.sh | 50 ++++++++++++------- 7 files changed, 113 insertions(+), 21 deletions(-) diff --git a/.zuul.yaml b/.zuul.yaml index ae05f8f14..b8ec2ff58 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -38,7 +38,7 @@ run: playbooks/nodepool-functional-py35/run.yaml - job: - name: nodepool-functional-py35-src + name: nodepool-functional-py35-src-base parent: nodepool-functional-base run: playbooks/nodepool-functional-py35-src/run.yaml vars: @@ -50,6 +50,13 @@ - openstack-infra/shade - openstack/diskimage-builder +- job: + name: nodepool-functional-py35-src + parent: nodepool-functional-py35-src-base + vars: + devstack_localrc: + NODEPOOL_PAUSE_UBUNTU_XENIAL_DIB: false + - job: name: nodepool-zuul-functional parent: tox @@ -65,6 +72,38 @@ zuul_work_dir: "{{ zuul.projects['git.openstack.org/openstack-infra/zuul'].src_dir }}" tox_envlist: nodepool +# Distro functional tests. This is used by projects such as +# diskimage-builder and glean as live-boot tests +- job: + name: nodepool-functional-py35-redhat-src + parent: nodepool-functional-py35-src-base + vars: + devstack_localrc: + NODEPOOL_PAUSE_CENTOS_7_DIB: false + NODEPOOL_PAUSE_FEDORA_26_DIB: false + +- job: + name: nodepool-functional-py35-suse-src + parent: nodepool-functional-py35-src-base + vars: + devstack_localrc: + NODEPOOL_PAUSE_OPENSUSE_423_DIB: false + +- job: + name: nodepool-functional-py35-ubuntu-src + parent: nodepool-functional-py35-src-base + vars: + devstack_localrc: + NODEPOOL_PAUSE_UBUNTU_XENIAL_DIB: false + NODEPOOL_PAUSE_UBUNTU_TRUSTY_DIB: false + +- job: + name: nodepool-functional-py35-debian-src + parent: nodepool-functional-py35-src-base + vars: + devstack_localrc: + NODEPOOL_PAUSE_DEBIAN_JESSIE_DIB: false + - project: check: jobs: diff --git a/devstack/files/debs/nodepool b/devstack/files/debs/nodepool index fe8b87512..e636fd0b3 100644 --- a/devstack/files/debs/nodepool +++ b/devstack/files/debs/nodepool @@ -3,3 +3,5 @@ kpartx debootstrap yum-utils zookeeperd +zypper +gnupg2 diff --git a/devstack/files/rpms/nodepool b/devstack/files/rpms/nodepool index f5cec3fbb..00be95d4b 100644 --- a/devstack/files/rpms/nodepool +++ b/devstack/files/rpms/nodepool @@ -1,3 +1,5 @@ qemu-img kpartx debootstrap +zypper +gnupg2 diff --git a/devstack/plugin.sh b/devstack/plugin.sh index 4688c6d21..6b8012b34 100644 --- a/devstack/plugin.sh +++ b/devstack/plugin.sh @@ -204,6 +204,7 @@ EOF NODEPOOL_FEDORA_26_MIN_READY=1 NODEPOOL_UBUNTU_TRUSTY_MIN_READY=1 NODEPOOL_UBUNTU_XENIAL_MIN_READY=1 + NODEPOOL_OPENSUSE_423_MIN_READY=1 if $NODEPOOL_PAUSE_CENTOS_7_DIB ; then NODEPOOL_CENTOS_7_MIN_READY=0 @@ -223,6 +224,9 @@ EOF if $NODEPOOL_PAUSE_UBUNTU_XENIAL_DIB ; then NODEPOOL_UBUNTU_XENIAL_MIN_READY=0 fi + if $NODEPOOL_PAUSE_OPENSUSE_423_DIB ; then + NODEPOOL_OPENSUSE_423_MIN_READY=0 + fi cat > /tmp/nodepool.yaml <