2015-05-20 10:08:18 -07:00
|
|
|
heat_template_version: 2015-04-30
|
2015-05-06 22:22:39 -04:00
|
|
|
|
|
|
|
description: >
|
|
|
|
A software config which runs manifests/overcloud_controller_pacemaker.pp
|
|
|
|
|
2015-07-16 10:43:18 +02:00
|
|
|
parameters:
|
|
|
|
ConfigDebug:
|
|
|
|
default: false
|
|
|
|
description: Whether to run config management (e.g. Puppet) in debug mode.
|
|
|
|
type: boolean
|
2016-03-15 10:49:30 -04:00
|
|
|
StepConfig:
|
|
|
|
type: string
|
|
|
|
description: Config manifests that will be used to step through the deployment.
|
|
|
|
default: ''
|
2015-07-16 10:43:18 +02:00
|
|
|
|
2015-05-06 22:22:39 -04:00
|
|
|
resources:
|
|
|
|
|
|
|
|
ControllerPuppetConfigImpl:
|
|
|
|
type: OS::Heat::SoftwareConfig
|
|
|
|
properties:
|
|
|
|
group: puppet
|
|
|
|
options:
|
2015-07-16 10:43:18 +02:00
|
|
|
enable_debug: {get_param: ConfigDebug}
|
2015-05-06 22:22:39 -04:00
|
|
|
enable_hiera: True
|
|
|
|
enable_facter: False
|
2016-08-17 15:18:23 +02:00
|
|
|
modulepath: /etc/puppet/modules:/opt/stack/puppet-modules:/usr/share/openstack-puppet/modules
|
2015-05-06 22:22:39 -04:00
|
|
|
outputs:
|
|
|
|
- name: result
|
2016-10-07 15:12:58 -04:00
|
|
|
inputs:
|
|
|
|
- name: step
|
|
|
|
type: Number
|
2015-05-06 22:22:39 -04:00
|
|
|
config:
|
2016-03-22 16:22:45 -04:00
|
|
|
list_join:
|
|
|
|
- ''
|
|
|
|
- - get_file: manifests/overcloud_controller_pacemaker.pp
|
2016-03-15 10:49:30 -04:00
|
|
|
- {get_param: StepConfig}
|
2015-05-06 22:22:39 -04:00
|
|
|
|
|
|
|
outputs:
|
|
|
|
OS::stack_id:
|
|
|
|
description: The software config which runs overcloud_controller_pacemaker.pp
|
|
|
|
value: {get_resource: ControllerPuppetConfigImpl}
|