Merge "Increase libvirt/qemu.conf max_files and max_processes"
[apex-tripleo-heat-templates.git] / puppet / controller-config-pacemaker.yaml
1 heat_template_version: ocata
2
3 description: >
4   A software config which runs manifests/overcloud_controller_pacemaker.pp
5
6 parameters:
7   ConfigDebug:
8     default: false
9     description: Whether to run config management (e.g. Puppet) in debug mode.
10     type: boolean
11   StepConfig:
12      type: string
13      description: Config manifests that will be used to step through the deployment.
14      default: ''
15
16 resources:
17
18   ControllerPuppetConfigImpl:
19     type: OS::Heat::SoftwareConfig
20     properties:
21       group: puppet
22       options:
23         enable_debug: {get_param: ConfigDebug}
24         enable_hiera: True
25         enable_facter: False
26         modulepath: /etc/puppet/modules:/opt/stack/puppet-modules:/usr/share/openstack-puppet/modules
27       outputs:
28       - name: result
29       inputs:
30       - name: step
31         type: Number
32       config:
33         list_join:
34         - ''
35         - - get_file: manifests/overcloud_controller_pacemaker.pp
36           - {get_param: StepConfig}
37
38 outputs:
39   OS::stack_id:
40     description: The software config which runs overcloud_controller_pacemaker.pp
41     value: {get_resource: ControllerPuppetConfigImpl}