Skip to content

Commit 4090104

Browse files
authored
Add task to generate input json file to run multibench
Added task to generate input JSON file for multibench run.
1 parent ce77f64 commit 4090104

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

roles/multibench_run/tasks/main.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@
2020
delegate_to: "{{ multibench_host }}"
2121
become: true
2222

23+
- name: Generate input json file for multibench run
24+
ansible.builtin.template:
25+
src: templates/all-in-one.json.j2
26+
dest: "{{ multibench_script_dir }}/all-in-one.json"
27+
mode: '0644'
28+
delegate_to: "{{ multibench_host }}"
29+
become: true
30+
2331
- name: Creating an output directory if needed
2432
when:
2533
- multibench_run_output_dir is undefined

0 commit comments

Comments
 (0)