Bump template version for all templates to "ocata"
[apex-tripleo-heat-templates.git] / puppet / services / heat-engine.yaml
1 heat_template_version: ocata
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   MonitoringSubscriptionHeatEngine:
44     default: 'overcloud-heat-engine'
45     type: string
46   HeatEngineLoggingSource:
47     type: json
48     default:
49       tag: openstack.heat.engine
50       path: /var/log/heat/heat-engine.log
51
52 resources:
53   HeatBase:
54     type: ./heat-base.yaml
55     properties:
56       ServiceNetMap: {get_param: ServiceNetMap}
57       DefaultPasswords: {get_param: DefaultPasswords}
58       EndpointMap: {get_param: EndpointMap}
59
60 outputs:
61   role_data:
62     description: Role data for the Heat Engine role.
63     value:
64       service_name: heat_engine
65       monitoring_subscription: {get_param: MonitoringSubscriptionHeatEngine}
66       logging_source: {get_param: HeatEngineLoggingSource}
67       logging_groups:
68         - heat
69       config_settings:
70         map_merge:
71           - get_attr: [HeatBase, role_data, config_settings]
72           - heat::engine::num_engine_workers: {get_param: HeatWorkers}
73             heat::engine::configure_delegated_roles: false
74             heat::engine::trusts_delegated_roles: []
75             tripleo::profile::base::heat::manage_db_purge: {get_param: HeatEnableDBPurge}
76             heat::database_connection:
77               list_join:
78                 - ''
79                 - - {get_param: [EndpointMap, MysqlInternal, protocol]}
80                   - '://heat:'
81                   - {get_param: HeatPassword}
82                   - '@'
83                   - {get_param: [EndpointMap, MysqlInternal, host]}
84                   - '/heat'
85             heat::keystone_ec2_uri: {get_param: [EndpointMap, KeystoneEC2, uri]}
86             heat::keystone::domain::domain_password: {get_param: HeatStackDomainAdminPassword}
87             heat::engine::auth_encryption_key:
88               yaql:
89                 expression: $.data.passwords.where($ != '').first()
90                 data:
91                   passwords:
92                     - {get_param: HeatAuthEncryptionKey}
93                     - {get_param: [DefaultPasswords, heat_auth_encryption_key]}
94       step_config: |
95         include ::tripleo::profile::base::heat::engine
96
97       service_config_settings:
98         mysql:
99           heat::db::mysql::password: {get_param: HeatPassword}
100           heat::db::mysql::user: heat
101           heat::db::mysql::host: {get_param: [EndpointMap, MysqlInternal, host_nobrackets]}
102           heat::db::mysql::dbname: heat
103           heat::db::mysql::allowed_hosts:
104             - '%'
105             - "%{hiera('mysql_bind_host')}"
106         keystone:
107             # This is needed because the keystone profile handles creating the domain
108             tripleo::profile::base::keystone::heat_admin_password: {get_param: HeatStackDomainAdminPassword}