![Ian Wienand](/assets/img/avatar_default.png)
When you're running a multi-node job, it would be nice to see the inventory hostname in this list, so if you want to say, monitor one of the nodes, you don't have to guess which is which. Change-Id: Ibf822d51711c74d963a7287eaeaa9a40ff074e79
42 lines
1.6 KiB
YAML
42 lines
1.6 KiB
YAML
# We don't want this to run for every host, it should only run once.
|
|
- run_once: yes
|
|
block:
|
|
- name: Setup log path fact
|
|
include_role:
|
|
name: set-zuul-log-path-fact
|
|
|
|
- name: Print job information
|
|
debug:
|
|
msg: |
|
|
# Job Information
|
|
Ansible Version: {{ ansible_version['full'] }}
|
|
Job: {{ zuul.job }}
|
|
Pipeline: {{ zuul.pipeline }}
|
|
Executor: {{ zuul.executor.hostname }}
|
|
{% if zuul.change_url is defined %}
|
|
Triggered by: {{ zuul.change_url }}
|
|
{% endif %}
|
|
{% if zuul_log_url is defined and zuul_log_path is defined %}
|
|
Log URL (when completed): {{ zuul_log_url }}/{{ zuul_log_path }}/
|
|
{% endif %}
|
|
{% if zuul.event_id is defined %}
|
|
Event ID: {{ zuul.event_id }}
|
|
{% endif %}
|
|
|
|
- name: Print node information
|
|
debug:
|
|
msg: |
|
|
# Node Information
|
|
Inventory Hostname: {{ zj_item }}
|
|
Hostname: {{ hostvars[zj_item]['ansible_hostname']|default('unknown') }}
|
|
Distro: {{ hostvars[zj_item]['ansible_distribution'] | default('unknown') }} {{ hostvars[zj_item]['ansible_distribution_version'] | default('unknown') }}
|
|
Provider: {{ hostvars[zj_item]['nodepool']['provider'] }}
|
|
Label: {{ hostvars[zj_item]['nodepool']['label'] }}
|
|
{% if hostvars[zj_item]['nodepool']['interface_ip'] is defined %}
|
|
Interface IP: {{ hostvars[zj_item]['nodepool']['interface_ip'] }}
|
|
{% endif %}
|
|
loop: "{{ query('inventory_hostnames', 'all,!localhost') }}"
|
|
loop_control:
|
|
loop_var: zj_item
|
|
ignore_errors: yes
|