Bump template version for all templates to "ocata"
[apex-tripleo-heat-templates.git] / extraconfig / tasks / pre_puppet_pacemaker.yaml
1 heat_template_version: ocata
2 description: 'Pre-Puppet Config for Pacemaker deployments'
3
4 parameters:
5   servers:
6     type: json
7   input_values:
8      type: json
9      description: input values for the software deployments
10
11 resources:
12
13   ControllerPrePuppetMaintenanceModeConfig:
14     type: OS::Heat::SoftwareConfig
15     properties:
16       group: script
17       config:
18         get_file: pacemaker_maintenance_mode.sh
19
20   ControllerPrePuppetMaintenanceModeDeployment:
21     type: OS::Heat::SoftwareDeployments
22     properties:
23       servers:  {get_param: servers}
24       config: {get_resource: ControllerPrePuppetMaintenanceModeConfig}
25       input_values: {get_param: input_values}