blob: d81b35fa3a50b1ccade472a3343f1638fce8d8cc [file] [log] [blame]
Zack Williams2aeb3ef2021-06-11 17:10:36 -07001---
2# Ansible playbook to configure uses on a set of nodes
3
4- name: Configure users and extra software for QA tasks on the compute nodes
5 hosts: aethercompute:aethermgmt
6 become: true
7
8 roles:
9 - users
10
11 tasks:
12
13 - name: Install QA packages
14 apt:
15 name:
16 - "arping"
17 - "ethtool"
18 - "iperf"
19 - "ipvsadm"
20 - "tcpdump"
21 - "tcpreplay"
22 - "traceroute"
23 - "tshark"
24 state: "present"
25 update_cache: true
26 cache_valid_time: 3600