browbeat/ansible/check/site.yml
Alex Krzos 72a721e47a Change to ansible become
Change-Id: Ieb151dd90af36ef037c4d705632b61f04d16a768
2016-01-26 16:40:17 -05:00

35 lines
544 B
YAML

---
#
# Playbook to check OSP install for common performance tuning issues
#
- hosts: controller
remote_user: heat-admin
roles:
- common
- controller
- keystone
- neutron
- nova
- hosts: compute
remote_user: heat-admin
roles:
- common
- compute
- nova
- hosts: ceph
remote_user: heat-admin
roles:
- common
- ceph
- hosts: localhost
gather_facts: False
become: false
name: Generating bug report
tasks:
- local_action: template src=templates/bug_report.j2 dest=./bug_report.log
become: false