2016-05-05 07:55:09 -04:00
|
|
|
heat_template_version: 2016-04-08
|
|
|
|
|
|
|
|
description: >
|
|
|
|
Openstack Heat API service configured with Puppet
|
|
|
|
|
|
|
|
parameters:
|
2016-08-11 23:07:46 +02:00
|
|
|
ServiceNetMap:
|
|
|
|
default: {}
|
|
|
|
description: Mapping of service_name -> network name. Typically set
|
|
|
|
via parameter_defaults in the resource registry. This
|
|
|
|
mapping overrides those in ServiceNetMapDefaults.
|
|
|
|
type: json
|
2016-08-17 09:26:05 -04:00
|
|
|
DefaultPasswords:
|
|
|
|
default: {}
|
|
|
|
type: json
|
2016-05-05 07:55:09 -04:00
|
|
|
EndpointMap:
|
|
|
|
default: {}
|
|
|
|
description: Mapping of service endpoint -> protocol. Typically set
|
|
|
|
via parameter_defaults in the resource registry.
|
|
|
|
type: json
|
|
|
|
HeatWorkers:
|
|
|
|
default: 0
|
|
|
|
description: Number of workers for Heat service.
|
|
|
|
type: number
|
|
|
|
HeatPassword:
|
|
|
|
description: The password for the Heat service and db account, used by the Heat services.
|
|
|
|
type: string
|
|
|
|
hidden: true
|
|
|
|
KeystoneRegion:
|
|
|
|
type: string
|
|
|
|
default: 'regionOne'
|
|
|
|
description: Keystone region for endpoint
|
2016-06-09 15:39:22 +02:00
|
|
|
MonitoringSubscriptionHeatApi:
|
|
|
|
default: 'overcloud-heat-api'
|
|
|
|
type: string
|
2016-08-09 16:20:18 -04:00
|
|
|
HeatApiLoggingSource:
|
|
|
|
type: json
|
|
|
|
default:
|
|
|
|
tag: openstack.heat.api
|
|
|
|
path: /var/log/heat/heat-api.log
|
2016-05-05 07:55:09 -04:00
|
|
|
|
|
|
|
resources:
|
|
|
|
HeatBase:
|
|
|
|
type: ./heat-base.yaml
|
2016-08-11 23:07:46 +02:00
|
|
|
properties:
|
|
|
|
ServiceNetMap: {get_param: ServiceNetMap}
|
2016-08-17 09:26:05 -04:00
|
|
|
DefaultPasswords: {get_param: DefaultPasswords}
|
2016-08-11 23:07:46 +02:00
|
|
|
EndpointMap: {get_param: EndpointMap}
|
2016-05-05 07:55:09 -04:00
|
|
|
|
|
|
|
outputs:
|
|
|
|
role_data:
|
|
|
|
description: Role data for the Heat API role.
|
|
|
|
value:
|
2016-07-28 10:30:10 +01:00
|
|
|
service_name: heat_api
|
2016-06-09 15:39:22 +02:00
|
|
|
monitoring_subscription: {get_param: MonitoringSubscriptionHeatApi}
|
2016-08-09 16:20:18 -04:00
|
|
|
logging_source: {get_param: HeatApiLoggingSource}
|
|
|
|
logging_groups:
|
|
|
|
- heat
|
2016-05-05 07:55:09 -04:00
|
|
|
config_settings:
|
|
|
|
map_merge:
|
|
|
|
- get_attr: [HeatBase, role_data, config_settings]
|
|
|
|
- heat::api::workers: {get_param: HeatWorkers}
|
2016-07-20 10:48:23 -04:00
|
|
|
tripleo.heat_api.firewall_rules:
|
|
|
|
'125 heat_api':
|
|
|
|
dport:
|
|
|
|
- 8004
|
|
|
|
- 13004
|
2016-08-24 14:02:13 -04:00
|
|
|
# NOTE: bind IP is found in Heat replacing the network name with the
|
|
|
|
# local node IP for the given network; replacement examples
|
|
|
|
# (eg. for internal_api):
|
|
|
|
# internal_api -> IP
|
|
|
|
# internal_api_uri -> [IP]
|
|
|
|
# internal_api_subnet - > IP/CIDR
|
|
|
|
heat::api::bind_host: {get_param: [ServiceNetMap, HeatApiNetwork]}
|
2016-05-05 07:55:09 -04:00
|
|
|
step_config: |
|
|
|
|
include ::tripleo::profile::base::heat::api
|
2016-09-15 09:19:15 +02:00
|
|
|
service_config_settings:
|
|
|
|
keystone:
|
|
|
|
heat::keystone::auth::tenant: 'service'
|
|
|
|
heat::keystone::auth::public_url: {get_param: [EndpointMap, HeatPublic, uri]}
|
|
|
|
heat::keystone::auth::internal_url: {get_param: [EndpointMap, HeatInternal, uri]}
|
|
|
|
heat::keystone::auth::admin_url: {get_param: [EndpointMap, HeatAdmin, uri]}
|
|
|
|
heat::keystone::auth::password: {get_param: HeatPassword}
|
|
|
|
heat::keystone::auth::region: {get_param: KeystoneRegion}
|