Merge "A few major-upgrade issues"
[apex-tripleo-heat-templates.git] / extraconfig / tasks / mitaka_to_newton_aodh_data_migration.yaml
1 heat_template_version: 2014-10-16
2
3 description: >
4   Software-config for performing aodh data migration
5
6 parameters:
7   servers:
8     type: json
9   input_values:
10     type: json
11     description: input values for the software deployments
12 resources:
13
14   AodhMysqlMigrationScriptConfig:
15     type: OS::Heat::SoftwareConfig
16     properties:
17       group: script
18       config: {get_file: aodh_data_migration.sh}
19
20   AodhMysqlMigrationScriptDeployment:
21     type: OS::Heat::SoftwareDeploymentGroup
22     properties:
23       servers:  {get_param: [servers, Controller]}
24       config: {get_resource: AodhMysqlMigrationScriptConfig}
25       input_values: {get_param: input_values}