
OpenStack is dropping the py2.7 support in ussuri cycle. Barbican is ready with python 3 and ok to drop the python 2.7 support. Complete discussion & schedule can be found in - http://lists.openstack.org/pipermail/openstack-discuss/2019-October/010142.html - https://etherpad.openstack.org/p/drop-python2-support Ussuri Communtiy-wide goal: https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html Depends-On: https://review.opendev.org/#/c/693631/ Change-Id: I77bf25fedb45433c7dbe655b4fd0c24dcf030549
77 lines
2.8 KiB
YAML
77 lines
2.8 KiB
YAML
- hosts: all
|
|
name: Barbican devstack tempest IPv6 job
|
|
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/devstack-gate
|
|
dest: devstack-gate
|
|
EOF
|
|
/usr/zuul-env/bin/zuul-cloner -m clonemap.yaml --cache-dir /opt/git \
|
|
https://opendev.org \
|
|
openstack/devstack-gate
|
|
executable: /bin/bash
|
|
chdir: '{{ ansible_user_dir }}/workspace'
|
|
environment: '{{ zuul | zuul_legacy_vars }}'
|
|
|
|
- shell:
|
|
cmd: |
|
|
set -e
|
|
set -x
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TEMPEST=1
|
|
export DEVSTACK_GATE_TEMPEST_REGEX=barbican
|
|
export KEEP_LOCALRC=1
|
|
|
|
export PROJECTS="openstack/barbican $PROJECTS"
|
|
export PROJECTS="openstack/python-barbicanclient $PROJECTS"
|
|
export PROJECTS="openstack/barbican-tempest-plugin $PROJECTS"
|
|
export DEVSTACK_LOCAL_CONFIG="enable_plugin barbican https://opendev.org/openstack/barbican"
|
|
export DEVSTACK_LOCAL_CONFIG+=$'\n'"export TEMPEST_PLUGINS='/opt/stack/new/barbican-tempest-plugin'"
|
|
|
|
export DEVSTACK_GATE_USE_PYTHON3=True
|
|
export DEVSTACK_LOCAL_CONFIG+=$'\n'"SERVICE_IP_VERSION=6"
|
|
export DEVSTACK_LOCAL_CONFIG+=$'\n'"SERVICE_HOST=''"
|
|
|
|
export BRANCH_OVERRIDE=default
|
|
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
|
|
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
|
|
fi
|
|
# Add configuration values for enabling security features in local.conf
|
|
function pre_test_hook {
|
|
if [ -f $BASE/new/barbican-tempest-plugin/tools/pre_test_hook.sh ] ; then
|
|
. $BASE/new/barbican-tempest-plugin/tools/pre_test_hook.sh
|
|
fi
|
|
}
|
|
export -f pre_test_hook
|
|
export DEVSTACK_GATE_USE_PYTHON3=True
|
|
if [ "{{ database }}" == "postgres" ] ; then
|
|
export DEVSTACK_GATE_POSTGRES=1
|
|
elif [ "{{ castellan_from_git }}" == "1" ] ; then
|
|
export DEVSTACK_PROJECT_FROM_GIT="castellan"
|
|
elif [ "{{ cursive }}" == "1" ] ; then
|
|
export DEVSTACK_PROJECT_FROM_GIT="cursive"
|
|
fi
|
|
|
|
function post_test_hook {
|
|
cd $BASE/new/tempest/tools
|
|
./verify-ipv6-only-deployments.sh
|
|
}
|
|
export -f post_test_hook
|
|
|
|
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 }}'
|