2015-11-13 11:18:50 +00:00
|
|
|
heat_template_version: 2014-10-16
|
|
|
|
description: 'Pre-Puppet Config for Pacemaker deployments'
|
|
|
|
|
|
|
|
parameters:
|
|
|
|
servers:
|
|
|
|
type: json
|
|
|
|
input_values:
|
|
|
|
type: json
|
|
|
|
description: input values for the software deployments
|
|
|
|
|
|
|
|
resources:
|
|
|
|
|
|
|
|
ControllerPrePuppetMaintenanceModeConfig:
|
|
|
|
type: OS::Heat::SoftwareConfig
|
|
|
|
properties:
|
|
|
|
group: script
|
2016-03-31 16:42:11 -05:00
|
|
|
config:
|
|
|
|
get_file: pacemaker_maintenance_mode.sh
|
2015-11-13 11:18:50 +00:00
|
|
|
|
|
|
|
ControllerPrePuppetMaintenanceModeDeployment:
|
|
|
|
type: OS::Heat::SoftwareDeployments
|
|
|
|
properties:
|
|
|
|
servers: {get_param: servers}
|
|
|
|
config: {get_resource: ControllerPrePuppetMaintenanceModeConfig}
|
|
|
|
input_values: {get_param: input_values}
|