a3139c4bb5
This is the result of having run the zuul migration tool. Depends-On: I72687a56285a3d733a9adeaf3dc037a1ac95efd3 Change-Id: Ib511da75908e152e72fdf0d7b496f4fa98f9c223 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
51 lines
1.9 KiB
YAML
51 lines
1.9 KiB
YAML
- hosts: all
|
|
name: Autoconverted job legacy-oslo.messaging-src-dsvm-full-kafka-default from old
|
|
job gate-oslo.messaging-src-dsvm-full-kafka-default-ubuntu-xenial-nv
|
|
tasks:
|
|
|
|
- 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
|
|
environment: '{{ zuul | zuul_legacy_vars }}'
|
|
|
|
- shell:
|
|
cmd: |
|
|
set -e
|
|
set -x
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TEMPEST=1
|
|
export DEVSTACK_GATE_TEMPEST_FULL=1
|
|
export PROJECTS="openstack/devstack-plugin-kafka $PROJECTS"
|
|
export DEVSTACK_LOCAL_CONFIG="enable_plugin devstack-plugin-kafka git://git.openstack.org/openstack/devstack-plugin-kafka"
|
|
export DEVSTACK_PROJECT_FROM_GIT="oslo.messaging"
|
|
|
|
if [ "kafka" == "amqp1" ]; then
|
|
# The AMQP 1.0 plugin supports a couple of different message bus configurations
|
|
# 'hybrid' - use RabbitMQ for Notifications, qdrouterd for RPC
|
|
# 'dual' - use qpidd for Notifications, qdrouterd for RPC
|
|
# default: use qpidd for Notifications and for RPC
|
|
case "default" in
|
|
hybrid)
|
|
export DEVSTACK_LOCAL_CONFIG+=$'\n'"AMQP1_SERVICE=qpid-hybrid"
|
|
;;
|
|
dual)
|
|
export DEVSTACK_LOCAL_CONFIG+=$'\n'"AMQP1_SERVICE=qpid-dual"
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
./safe-devstack-vm-gate-wrap.sh
|
|
executable: /bin/bash
|
|
environment: '{{ zuul | zuul_legacy_vars }}'
|