browbeat/ansible/install/connmon.yml
jkilpatr cd3a910ac0 Removed Ansible become from Conmon install
This commit changes the conmon install playbook as well as the
required tasks and handlers to use become instead of having
the whole playbook run as root by ansible_become. The playbook
has been tested against my own cloud.

https://trello.com/c/KBFbahdV/38-ansible-remove-ansible-become-from-vars-and-use-become-instead

Change-Id: Icf89451371dd9fc5da9880d6a00ae91c88011970
2016-07-20 09:40:51 -04:00

26 lines
362 B
YAML

---
#
# Playbook to install connmon on undercloud/overcloud
#
- hosts: undercloud
remote_user: "{{ local_remote_user }}"
vars:
undercloud: true
roles:
- common
- connmon
- hosts: controller
remote_user: "{{ host_remote_user }}"
vars:
undercloud: false
roles:
- common
- connmon
- nova
- neutron
- keystone
- cinder
- heat