aboutsummaryrefslogtreecommitdiffstats
path: root/extraconfig/tasks/pre_puppet_pacemaker.yaml
blob: a424463374b4ad9e34a5badad58e5c2d32f4da79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
heat_template_version: ocata
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
      config:
        get_file: pacemaker_maintenance_mode.sh

  ControllerPrePuppetMaintenanceModeDeployment:
    type: OS::Heat::SoftwareDeployments
    properties:
      servers: {get_param: servers}
      config: {get_resource: ControllerPrePuppetMaintenanceModeConfig}
      input_values: {get_param: input_values}