blob: d2fde4d4233b3349acd741de243e458086dab4e8 [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"
Zack Williamsdac2be42021-08-19 16:14:31 -070020 - "python-scapy"
Zack Williams2aeb3ef2021-06-11 17:10:36 -070021 - "tcpdump"
22 - "tcpreplay"
23 - "traceroute"
24 - "tshark"
25 state: "present"
26 update_cache: true
27 cache_valid_time: 3600