We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d746853 + e0f2755 commit f652e88Copy full SHA for f652e88
plugins/collect-logs/main.yml
@@ -39,8 +39,9 @@
39
selinux_problems_list: []
40
segfault_problems: 0
41
oom_killer_problems: 0
42
- counted_hosts: "{{ groups['all'] | difference( groups['local'] + (groups['tester'] | default([]) | difference(groups['controller']|default([]))) ) }}"
43
-
+ # aggregate from all hosts, excluding any nonproduct ones
+ # non product is localhost and tester nodes (unless they are also UC or controller too)
44
+ counted_hosts: "{{ groups['all'] | difference( groups['local'] + (groups['tester'] | default([]) | difference(groups['undercloud']|default([]) + groups['controller']|default([]))) ) }}"
45
- debug:
46
msg: "counting issues from hosts: {{ counted_hosts }}"
47
0 commit comments