summaryrefslogtreecommitdiff
path: root/playbooks
diff options
context:
space:
mode:
authorZuul <zuul@review.openstack.org>2018-10-01 15:20:52 +0000
committerGerrit Code Review <review@openstack.org>2018-10-01 15:20:52 +0000
commitf60de6433ed6fc6226e0c04442b282b8fa201699 (patch)
treeaeabcd8dc59ef27dbd43bd0dc2b9fc6c66d5460f /playbooks
parent9c819cd153cee0f3fe020d68f92de2abc2b38ad5 (diff)
parent86e9c7e0f9e95b18957afdc285884748c8197824 (diff)
downloadironic-f60de6433ed6fc6226e0c04442b282b8fa201699.tar.gz
Merge "Switch ironic-tempest-dsvm-functional-python2 to zuulv3"
Diffstat (limited to 'playbooks')
-rw-r--r--playbooks/ci-workarounds/etc-neutron.yaml9
-rw-r--r--playbooks/legacy/tempest-dsvm-ironic-functional-python2/run.yaml106
2 files changed, 9 insertions, 106 deletions
diff --git a/playbooks/ci-workarounds/etc-neutron.yaml b/playbooks/ci-workarounds/etc-neutron.yaml
new file mode 100644
index 000000000..b1c772162
--- /dev/null
+++ b/playbooks/ci-workarounds/etc-neutron.yaml
@@ -0,0 +1,9 @@
+- hosts: all
+ name: Create /etc/neutron for the devstack base job
+ tasks:
+ - name: Creates directory
+ file:
+ path: /etc/neutron
+ state: directory
+ mode: 0777
+ become: yes
diff --git a/playbooks/legacy/tempest-dsvm-ironic-functional-python2/run.yaml b/playbooks/legacy/tempest-dsvm-ironic-functional-python2/run.yaml
deleted file mode 100644
index 0a7eca375..000000000
--- a/playbooks/legacy/tempest-dsvm-ironic-functional-python2/run.yaml
+++ /dev/null
@@ -1,106 +0,0 @@
-- hosts: all
- name: Legacy functional (API) tests job on Python 2
- tasks:
-
- - name: Ensure legacy workspace directory
- file:
- path: '{{ ansible_user_dir }}/workspace'
- state: directory
-
- - shell:
- cmd: |
- set -e
- set -x
- cat > clonemap.yaml << EOF
- clonemap:
- - name: openstack-infra/devstack-gate
- dest: devstack-gate
- EOF
- /usr/zuul-env/bin/zuul-cloner -m clonemap.yaml --cache-dir /opt/git \
- git://git.openstack.org \
- openstack-infra/devstack-gate
- executable: /bin/bash
- chdir: '{{ ansible_user_dir }}/workspace'
- environment: '{{ zuul | zuul_legacy_vars }}'
-
- - shell:
- cmd: |
- cat << 'EOF' >> ironic-extra-vars
- export DEVSTACK_LOCAL_CONFIG+=$'\n'"IRONIC_VM_SPECS_RAM=384"
- export DEVSTACK_LOCAL_CONFIG+=$'\n'"IRONIC_RAMDISK_TYPE=tinyipa"
-
- export DEVSTACK_GATE_TEMPEST_REGEX="ironic_tempest_plugin.tests.api"
-
- EOF
- chdir: '{{ ansible_user_dir }}/workspace'
- environment: '{{ zuul | zuul_legacy_vars }}'
-
- - shell:
- cmd: |
- cat << 'EOF' >> ironic-vars-early
- # use tempest plugin
- export DEVSTACK_LOCAL_CONFIG+=$'\n'"TEMPEST_PLUGINS+=' /opt/stack/new/ironic-tempest-plugin'"
- export TEMPEST_CONCURRENCY=1
- EOF
- chdir: '{{ ansible_user_dir }}/workspace'
- environment: '{{ zuul | zuul_legacy_vars }}'
-
- - shell:
- cmd: |
- set -e
- set -x
- export PROJECTS="openstack/ironic $PROJECTS"
- export PROJECTS="openstack/ironic-lib $PROJECTS"
- export PROJECTS="openstack/ironic-python-agent $PROJECTS"
- export PROJECTS="openstack/ironic-tempest-plugin $PROJECTS"
- export PROJECTS="openstack/python-ironicclient $PROJECTS"
- export PROJECTS="openstack/pyghmi $PROJECTS"
- export PROJECTS="openstack/virtualbmc $PROJECTS"
- export PYTHONUNBUFFERED=true
- export DEVSTACK_GATE_TEMPEST=1
- export DEVSTACK_GATE_IRONIC=1
- export DEVSTACK_GATE_NEUTRON=1
- export DEVSTACK_GATE_VIRT_DRIVER=ironic
- export DEVSTACK_GATE_CONFIGDRIVE=1
- export DEVSTACK_GATE_IRONIC_DRIVER=ipmi
- # Only keystone is required for the functional tests
- export OVERRIDE_ENABLED_SERVICES="key,mysql,rabbit,ir-api,ir-cond,tempest"
- # We do not need testing nodes pre-configured
- export DEVSTACK_LOCAL_CONFIG+=$'\n'"IRONIC_BAREMETAL_BASIC_OPS=False"
- # There is no neutron, so using noop networks.
- export DEVSTACK_LOCAL_CONFIG+=$'\n'"IRONIC_DEFAULT_NETWORK_INTERFACE=noop"
-
- export BRANCH_OVERRIDE="{{ zuul.override_checkout | default('default') }}"
- if [ "$BRANCH_OVERRIDE" != "default" ] ; then
- export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
- fi
-
- if [[ "$ZUUL_BRANCH" != "stable/ocata" && "$BRANCH_OVERRIDE" != "stable/ocata" ]]; then
- export DEVSTACK_GATE_TLSPROXY=1
- fi
-
- export DEVSTACK_LOCAL_CONFIG+=$'\n'"IRONIC_TEMPEST_WHOLE_DISK_IMAGE=True"
- export DEVSTACK_LOCAL_CONFIG+=$'\n'"IRONIC_VM_EPHEMERAL_DISK=0"
-
- export DEVSTACK_GATE_IRONIC_BUILD_RAMDISK=0
- export DEVSTACK_LOCAL_CONFIG+=$'\n'"IRONIC_INSPECTOR_BUILD_RAMDISK=False"
-
- export DEVSTACK_LOCAL_CONFIG+=$'\n'"IRONIC_VM_COUNT=1"
-
- # Ensure the ironic-vars-EARLY file exists
- touch ironic-vars-early
- # Pull in the EARLY variables injected by the optional builders
- source ironic-vars-early
-
- export DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin ironic git://git.openstack.org/openstack/ironic"
-
- # Ensure the ironic-EXTRA-vars file exists
- touch ironic-extra-vars
- # Pull in the EXTRA variables injected by the optional builders
- source ironic-extra-vars
-
- cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
- ./safe-devstack-vm-gate-wrap.sh
- executable: /bin/bash
- chdir: '{{ ansible_user_dir }}/workspace'
- environment: '{{ zuul | zuul_legacy_vars }}'