aboutsummaryrefslogtreecommitdiffstats
path: root/extraconfig/tasks/post_puppet_pacemaker.yaml
blob: a63868c953b498a4df4e2123651e208add55e20f (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
26
27
28
29
30
31
32
33
34
35
36
37
heat_template_version: ocata
description: 'Post-Puppet Config for Pacemaker deployments'

parameters:
  servers:
    type: json
  input_values:
     type: json
     description: input values for the software deployments

resources:

  ControllerPostPuppetMaintenanceModeConfig:
    type: OS::Heat::SoftwareConfig
    properties:
      group: script
      config: |
        #!/bin/bash
        pacemaker_status=$(systemctl is-active pacemaker)

        if [ "$pacemaker_status" = "active" ]; then
            pcs property set maintenance-mode=false
        fi

  ControllerPostPuppetMaintenanceModeDeployment:
    type: OS::Heat::SoftwareDeployments
    properties:
      servers:  {get_param: servers}
      config: {get_resource: ControllerPostPuppetMaintenanceModeConfig}
      input_values: {get_param: input_values}

  ControllerPostPuppetRestart:
    type: OS::TripleO::Tasks::ControllerPostPuppetRestart
    depends_on: ControllerPostPuppetMaintenanceModeDeployment
    properties:
      servers:  {get_param: servers}
      input_values: {get_param: input_values}