browbeat/rally/rally-plugins/pbench-fio/ansible/pbench_agent_tool_meister_firewall.yml
rajeshP524 03f1300e2e Storage Automation with Pbench-fio
Added a new workload in browbeat, where in it runs fio
benchmarks against vms attached with cinder volumes(backed by ceph)
and collects the results

Change-Id: I3bfe96fcf3242a0f88c50be35fe9d6368910fab8
2023-09-28 14:47:41 +05:30

24 lines
435 B
YAML

---
- name: Open ports for redis and tool data sink
hosts: servers
remote_user: cloud-user
become: true
roles:
- pbench_firewall_open_ports
tasks:
- name: enable port 8765
firewalld:
port: 8765/tcp
permanent: true
state: enabled
- name: restart firewalld and redis
systemd:
name: "{{ item }}"
state: restarted
loop:
- firewalld
- redis