fb8a5145df
ARA's master branch now has static site generation, so we can move away from the stable branch and get the new reports. In the mean time ARA upstream has moved to github, so this updates the references for the -devel job. Depends-On: https://review.opendev.org/c/openstack/project-config/+/793530 Change-Id: I008b35562994f1205a4f66e53f93b9885a6b8754
27 lines
1.5 KiB
YAML
27 lines
1.5 KiB
YAML
- hosts: bridge.openstack.org:!disabled
|
|
name: "Bridge: boostrap the bastion host"
|
|
become: true
|
|
roles:
|
|
- pip3
|
|
# Note for production use we expect to take the defaults; unit
|
|
# test jobs override this to test with latest upstream ansible.
|
|
# For example, if there is a fix on the ansible stable branch we
|
|
# need that is unreleased, you could do the following:
|
|
#
|
|
# install_ansible_name: '{{ bridge_ansible_name | default("git+https://github.com/ansible/ansible.git@stable-2.7") }}'
|
|
# install_ansible_version: '{{ bridge_ansible_version | default(None) }}'
|
|
- role: install-ansible
|
|
install_ansible_name: '{{ bridge_ansible_name | default("ansible") }}'
|
|
# NOTE(mordred): Do not upgrade this to 2.10 without figuring out an install for the
|
|
# debug callback plugin which moved out of tree in 2.10. It might be in Ansible Community
|
|
# Distro - but needs to be verified before we do it.
|
|
install_ansible_version: '{{ bridge_ansible_version | default("2.9.8") }}'
|
|
install_ansible_openstacksdk_name: '{{ bridge_openstacksdk_name | default("openstacksdk") }}'
|
|
install_ansible_openstacksdk_version: '{{ bridge_openstacksdk_verison | default("latest") }}'
|
|
# NOTE(ianw): At 2018-12, ARA is only enabled during gate
|
|
# testing jobs as we decide if or how to store data on
|
|
# production bridge.o.o
|
|
install_ansible_ara_name: '{{ bridge_ara_name | default("ara[server]") }}'
|
|
install_ansible_ara_version: '{{ bridge_ara_version | default("latest") }}'
|
|
- root-keys
|