zuul-jobs/roles/validate-host/tasks/main.yaml
Ian Wienand f76cfbab11 linters: fix spaces between filters
This fixes a number of places where we do not have spaces between
filters.  I think that this is a reasonable rule for readability (I
also think it probably was enforced, but maybe later versions got
better at detecting it?).

These are detected by a later version of Ansible lint; this change
should have no operational change to any roles but prepares us to
update in a follow-on change.

Change-Id: I07e1a109b87adce86f483d14d7e02fcecb8313d5
2022-07-27 17:13:39 +10:00

49 lines
1.6 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
mode: 0755
- name: Collect information about the host
setup:
register: setupinfo
- name: Sanitize hostname
set_fact:
validate_host_hostname_sanitized: "{{ validate_host_hostname | replace('/', '_') }}"
- name: Write out all ansible variables/facts known for each host
delegate_to: localhost
template:
dest: "{{ zuul_info_dir }}/host-info.{{ validate_host_hostname_sanitized }}.yaml"
src: templates/host-info.j2
mode: 0644
- name: zuul_debug_info block
block:
- name: Collect information about zuul worker
zuul_debug_info:
ipv4_route_required: "{{ zuul_site_ipv4_route_required | default(false) }}"
ipv6_route_required: "{{ zuul_site_ipv6_route_required | default(false) }}"
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.{{ validate_host_hostname_sanitized }}.txt"
src: templates/zuul-info.j2
mode: 0644
when:
- ansible_os_family != "Windows"
- ansible_python_version is version('2.7', '>=')