3c6ec654b4
Heat now supports release name aliases, so we can replace the inconsistent mix of date related versions with one consistent version that aligns with the supported version of heat for this t-h-t branch. This should also help new users who sometimes copy/paste old templates and discover intrinsic functions in the t-h-t docs don't work because their template version is too old. Change-Id: Ib415e7290fea27447460baa280291492df197e54
38 lines
1.0 KiB
YAML
38 lines
1.0 KiB
YAML
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}
|