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.
1 parent 7aef62a commit 5258431Copy full SHA for 5258431
playbooks/packet_gen/trex/gather_perf_info.yml
@@ -65,7 +65,7 @@
65
command: ovs-vswitchd --version
66
register: compute_ovs_versions
67
68
- delegate_to: "{{ groups['compute'][0] }}"
+ delegate_to: "{{ dut_compute if dut_compute else 'none' }}"
69
70
- name: upload_result_to_elk
71
include_role:
roles/packet_gen/trex/upload_results_to_elk/tasks/main.yml
@@ -9,6 +9,9 @@
9
- name: install elasticsearch pip
10
pip:
11
name: elasticsearch=={{ elasticsearch_pip_version }}
12
+ become: true
13
14
- name: upload results to elasticsearch
15
script: upload_to_ELK.py --upload -p /tmp/{{ dut_type }}_perf_info.json
16
+ args:
17
+ executable: python3
0 commit comments