bbc50852b6
We remove the privileged inventory file copy from validate-host so that validate-host can be tested more easily. Users should use log-inventory in their base jobs to get this functionality. Depends-On: https://review.openstack.org/563789 Change-Id: I8cd1748395abfe868f1716a9b4394850f962d436
34 lines
1.0 KiB
YAML
34 lines
1.0 KiB
YAML
- name: Define zuul_info_dir fact
|
|
set_fact:
|
|
zuul_info_dir: "{{ zuul.executor.log_root }}/zuul-info"
|
|
|
|
- name: Ensure Zuul Ansible directory exists
|
|
delegate_to: localhost
|
|
run_once: true
|
|
file:
|
|
path: "{{ zuul_info_dir }}"
|
|
state: directory
|
|
|
|
- name: Collect information about the host
|
|
setup:
|
|
register: setupinfo
|
|
|
|
- name: Write out all ansible variables/facts known for each host
|
|
delegate_to: localhost
|
|
template:
|
|
dest: "{{ zuul_info_dir }}/host-info.{{ inventory_hostname }}.yaml"
|
|
src: templates/host-info.j2
|
|
|
|
- name: Collect information about zuul worker
|
|
zuul_debug_info:
|
|
image_manifest: "{{ zuul_site_image_manifest|default(omit) }}"
|
|
image_manifest_files: "{{ zuul_site_image_manifest_files|default(omit) }}"
|
|
traceroute_host: "{{ zuul_site_traceroute_host|default(omit) }}"
|
|
register: zdi
|
|
|
|
- name: Write out all zuul information for each host
|
|
delegate_to: localhost
|
|
template:
|
|
dest: "{{ zuul_info_dir }}/zuul-info.{{ inventory_hostname }}.txt"
|
|
src: templates/zuul-info.j2
|