082c5174b1
We have puppet configured to write reports when it runs. We used to collect these and inject them into puppetdb. Since we don't do this anymore, they're just a giant pile of files we never see. Enable managing the puppet.conf file from ansible and then also turn off the reports. Change-Id: I55bef052bddc9b9ff5de76a4f0b2ec07f93f158c
17 lines
360 B
YAML
17 lines
360 B
YAML
---
|
|
- hosts: "controller*.ic.openstack.org:!disabled"
|
|
gather_facts: true
|
|
serial: 1
|
|
roles:
|
|
- role: puppet
|
|
manage_config: True
|
|
puppet_reports: none
|
|
- hosts: "compute*.ic.openstack.org:!disabled"
|
|
gather_facts: true
|
|
max_fail_percentage: 100
|
|
serial: "10%"
|
|
roles:
|
|
- role: puppet
|
|
manage_config: True
|
|
puppet_reports: none
|