You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
749 B
28 lines
749 B
heat_template_version: 2014-10-16 |
|
description: 'Post-Puppet restart config for Pacemaker deployments' |
|
|
|
parameters: |
|
servers: |
|
type: json |
|
input_values: |
|
type: json |
|
description: input values for the software deployments |
|
|
|
resources: |
|
|
|
ControllerPostPuppetRestartConfig: |
|
type: OS::Heat::SoftwareConfig |
|
properties: |
|
group: script |
|
config: |
|
list_join: |
|
- '' |
|
- - get_file: pacemaker_common_functions.sh |
|
- get_file: pacemaker_resource_restart.sh |
|
|
|
ControllerPostPuppetRestartDeployment: |
|
type: OS::Heat::SoftwareDeployments |
|
properties: |
|
servers: {get_param: servers} |
|
config: {get_resource: ControllerPostPuppetRestartConfig} |
|
input_values: {get_param: input_values}
|
|
|