Merge "Fix base service type inheriting gnocchi service templates"
[apex-tripleo-heat-templates.git] / puppet / services / heat-engine.yaml
1 heat_template_version: 2016-10-14
2
3 description: >
4   Openstack Heat Engine service configured with Puppet
5
6 parameters:
7   ServiceNetMap:
8     default: {}
9     description: Mapping of service_name -> network name. Typically set
10                  via parameter_defaults in the resource registry.  This
11                  mapping overrides those in ServiceNetMapDefaults.
12     type: json
13   DefaultPasswords:
14     default: {}
15     type: json
16   EndpointMap:
17     default: {}
18     description: Mapping of service endpoint -> protocol. Typically set
19                  via parameter_defaults in the resource registry.
20     type: json
21   HeatEnableDBPurge:
22     type: boolean
23     default: true
24     description: |
25         Whether to create cron job for purging soft deleted rows in the Heat database.
26   HeatWorkers:
27     default: 0
28     description: Number of workers for Heat service.
29     type: number
30   HeatPassword:
31     description: The password for the Heat service and db account, used by the Heat services.
32     type: string
33     hidden: true
34   HeatStackDomainAdminPassword:
35     description: Password for heat_stack_domain_admin user.
36     type: string
37     hidden: true
38   HeatAuthEncryptionKey:
39     description: Auth encryption key for heat-engine
40     type: string
41     hidden: true
42     default: ''
43
44 resources:
45   HeatBase:
46     type: ./heat-base.yaml
47     properties:
48       ServiceNetMap: {get_param: ServiceNetMap}
49       DefaultPasswords: {get_param: DefaultPasswords}
50       EndpointMap: {get_param: EndpointMap}
51
52 outputs:
53   role_data:
54     description: Role data for the Heat Engine role.
55     value:
56       service_name: heat_engine
57       config_settings:
58         map_merge:
59           - get_attr: [HeatBase, role_data, config_settings]
60           - heat::engine::num_engine_workers: {get_param: HeatWorkers}
61             heat::engine::configure_delegated_roles: false
62             heat::engine::trusts_delegated_roles: []
63             tripleo::profile::base::heat::manage_db_purge: {get_param: HeatEnableDBPurge}
64             heat::database_connection:
65               list_join:
66                 - ''
67                 - - {get_param: [EndpointMap, MysqlInternal, protocol]}
68                   - '://heat:'
69                   - {get_param: HeatPassword}
70                   - '@'
71                   - {get_param: [EndpointMap, MysqlInternal, host]}
72                   - '/heat'
73             heat::keystone_ec2_uri: {get_param: [EndpointMap, KeystoneEC2, uri]}
74             heat::identity_uri: {get_param: [EndpointMap, KeystoneAdmin, uri_no_suffix]}
75             heat::keystone_password: {get_param: HeatPassword}
76             heat::db::mysql::password: {get_param: HeatPassword}
77             heat::keystone::domain::domain_password: {get_param: HeatStackDomainAdminPassword}
78             heat::db::mysql::user: heat
79             heat::db::mysql::host: {get_param: [EndpointMap, MysqlInternal, host_nobrackets]}
80             heat::db::mysql::dbname: heat
81             heat::db::mysql::allowed_hosts:
82               - '%'
83               - "%{hiera('mysql_bind_host')}"
84             heat::engine::auth_encryption_key:
85               yaql:
86                 expression: $.data.passwords.where($ != '').first()
87                 data:
88                   passwords:
89                     - {get_param: HeatAuthEncryptionKey}
90                     - {get_param: [DefaultPasswords, heat_auth_encryption_key]}
91       step_config: |
92         include ::tripleo::profile::base::heat::engine