diff --git a/roles/test-emit-job-header/tasks/main.yaml b/roles/test-emit-job-header/tasks/main.yaml
index 7d08bf666..a2d8b70aa 100644
--- a/roles/test-emit-job-header/tasks/main.yaml
+++ b/roles/test-emit-job-header/tasks/main.yaml
@@ -19,3 +19,15 @@
           {% if zuul_log_url is defined and zuul_log_path is defined %}
           Log URL (when completed): {{ zuul_log_url }}/{{ zuul_log_path }}
           {% endif %}
+
+    - name: Print node information
+      debug:
+        msg: |
+          # Node Information
+          Hostname: {{ hostvars[item]['ansible_hostname'] }}
+          Provider: {{ hostvars[item]['nodepool']['provider'] }}
+          Label: {{ hostvars[item]['nodepool']['label'] }}
+          {% if hostvars[item]['nodepool']['interface_ip'] is defined %}
+          Interface IP: {{ hostvars[item]['nodepool']['interface_ip'] }}
+          {% endif %}
+      loop: "{{ query('inventory_hostnames', 'all,!localhost') }}"