6aada5364e
This adds log-inventory role to base-test so that we can test it. Depends-On: https://review.openstack.org/563787 Change-Id: Ia0861b4a5d1e34213b29b33548ea6205c0364861
30 lines
922 B
YAML
30 lines
922 B
YAML
- hosts: localhost
|
|
roles:
|
|
- role: emit-job-header
|
|
zuul_log_url: "http://logs.openstack.org"
|
|
|
|
- hosts: all
|
|
pre_tasks:
|
|
# NOTE(pabelanger): Until we hit the validate-host role, we have a minimal
|
|
# set of ansible variables collected by zuul-executor. This doesn't include
|
|
# network variables (ansible_default_ipv4 / ansible_default_ipv6) so gather
|
|
# these variables as they are important to the configure-unbound role.
|
|
- name: Gather network facts
|
|
setup:
|
|
gather_subset: 'network'
|
|
|
|
roles:
|
|
- add-build-sshkey
|
|
- start-zuul-console
|
|
- log-inventory
|
|
- configure-unbound
|
|
- validate-host
|
|
- use-cached-repos
|
|
- mirror-workspace-git-repos
|
|
- mirror-info
|
|
- role: configure-mirrors
|
|
set_apt_mirrors_trusted: True
|
|
- role: fetch-zuul-cloner
|
|
destination: "/usr/zuul-env/bin/zuul-cloner"
|
|
repo_src_dir: "/home/zuul/src/git.openstack.org"
|