c1a4f8d810
To be consistent with all other SoftwareDeployment's in tripleo-heat-templates, this sets the name property on the deployments where it was missing. Change-Id: I8bc062d2af93acead240bd5e473ea385b2bf6cf2
30 lines
792 B
YAML
30 lines
792 B
YAML
heat_template_version: pike
|
|
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:
|
|
name: ControllerPostPuppetRestartDeployment
|
|
servers: {get_param: servers}
|
|
config: {get_resource: ControllerPostPuppetRestartConfig}
|
|
input_values: {get_param: input_values}
|