aboutsummaryrefslogtreecommitdiffstats
path: root/extraconfig/tasks/post_puppet_pacemaker.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'extraconfig/tasks/post_puppet_pacemaker.yaml')
-rw-r--r--extraconfig/tasks/post_puppet_pacemaker.yaml37
1 files changed, 0 insertions, 37 deletions
diff --git a/extraconfig/tasks/post_puppet_pacemaker.yaml b/extraconfig/tasks/post_puppet_pacemaker.yaml
deleted file mode 100644
index a304e55b..00000000
--- a/extraconfig/tasks/post_puppet_pacemaker.yaml
+++ /dev/null
@@ -1,37 +0,0 @@
-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}