browbeat/ansible/install/collectd.yml
rajeshP524 e21d0d668c Add Collectd Monitoring Support for RHOSO Controlplane
Change-Id: Id6057c27e18c691f0174552d5d958ce67bea0463
2024-07-11 11:52:37 +05:30

17 lines
510 B
YAML

---
- name: set fact collectd_container
import_playbook: pre-collectd.yml
when: not is_rhoso_deployment
- name: Run containerized collectd (Stein and greater recommended)
import_playbook: collectd-container.yml
when: hostvars['undercloud']['collectd_container']
- name: Run collectd installed through RPMs
import_playbook: collectd-baremetal.yml
when: not hostvars['undercloud']['collectd_container']
- name: Run collectd rhoso
import_playbook: collectd-rhoso.yaml
when: is_rhoso_deployment